Hi,
I'm new to Hibernate Search and I'm faced with the problem of indexing fields in entities. I have @MappedSuperclass BaseEntity which contains fields id, title and description annotated with @DocumentId and @Field. BaseEntity is extended with Node class. Inheritance strategy is Table per class. Node is extended with LearningGoal. I created a 3 instances of LearningGoal. If I try to list its fields Hibernate Search finds only id and _hibernate_class are found for each found entity. Do you know what could be a problem so other fields are not indexed?
Thanks, Zoran
|