Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by NoblePaul: http://wiki.apache.org/solr/Solrj The comment on the change is: added package of @Field ------------------------------------------------------------------------------ === Directly adding POJOs to Solr === * Create a Java bean with annotations. The [EMAIL PROTECTED] annotation can be applied to a field or a setter method. If the field name is different from the bean field name give the aliased name in the annotation itself as shown in the categories field. {{{ + import org.apache.solr.client.solrj.beans.Field; + - public static class Item { + public class Item { @Field String id;
