engine « Search « JPA Q&A





1. Hibernate Search querying?    stackoverflow.com

Greetings My domain model is as follows

class Species {
 private String name;
 ..
 ..
 List<Family> families;
}

class Family{
 private String name;
 private String locusId;
 ..
 List<Member> members; 
}

class Members{
 private String name;
 private ...

2. Hibernaet Lucence Search Engine    forum.hibernate.org

Hi, you should post this to the Search forum. Incidentally, it's name is "Hibernate Search"; giving you a full answer would have me writing some pages. Can I suggest you to read the book "Hibernate Search in Action", or some article about it? You should use it if you a) are using or plan to use Hibernate or JPA, or have ...

3. Hibernate + Search Engine    forum.hibernate.org