I am trying to build hibernate full text search for a nodeEntity
. It gives:
Can't build query for type x.y.z.Object which is neither configured nor has any configured sub-types
My class is like below. I am using Neo4j database.
@NodeEntity
@Getter
@Setter
public class ClassName {
@Index
private String xyzId;
@Index
@Field(index = org.hibernate.search.annotations.Index.YES, analyze = Analyze.NO, store = Store.YES)
private String xyz;
}