Hi,
I use Lucene for my search engine.
I have the following error "Unable to load entity class from criteria : normalFolder" when I use this source code :
Code:
Criteria criteria = fullTextSession.createCriteria("normalFolder");
List result = fullTextSession.createFullTextQuery(query). setCriteriaQuery(criteria).list ();
I don't want to suse this one
Code:
fullTextSession.createFullTextQuery(query, Folder.class);
Because this result to much entity Folder ->ParentFolder -> ParentFolder -> ect
The error is on setCriteria and not on createCriteria. I have already use createCriteria ("normalFolder") in other function and this without any problems.
Any Idea?
Thanks