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
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
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