Re: Annotations and reference types

2009-11-02 Thread Noble Paul നോബിള്‍ नोब्ळ्
I guess this is not a very good idea. The document itself is a flat data structure. It is hard to see that is nested datastructure. If allowed , how deep would we wish to make it. The simple solution would be to write setters for "b_id" and "b_name" in class A and the setters can inject values in

Re: Annotations and reference types

2009-11-02 Thread Shalin Shekhar Mangar
On Thu, Oct 29, 2009 at 7:57 PM, M. Tinnemeyer wrote: > Dear listusers, > > Is there a way to store an instance of class A (including the fields from > "myB") via solr using annotations ? > The index should look like : id; name; b_id; b_name > > -- > Class A { > > @Field > private String

Annotations and reference types

2009-10-29 Thread M. Tinnemeyer
Dear listusers, Is there a way to store an instance of class A (including the fields from "myB") via solr using annotations ? The index should look like : id; name; b_id; b_name -- Class A { @Field private String id; @Field private String name; @Field private B myB; } -- Cla