lucene « Map « JPA Q&A





1. Hibernate search : How to index B childs of a A parent class ? How to get only B objects that contains one specific object A using lucene?    stackoverflow.com

I have a problem with lucene indexation, I insert one indexed entity in a manyToMany association but lucene doesn't index as I expected.

@Entity  
@Indexed  
@Table(name="level")  
public class Level ...