Hello,
I have a hibernate query like this:
Code:
FullTextQuery fullTextQuery = fullTextEntityManager.createFullTextQuery(booleanQuery, Project.class);
which returns me like supposed a list of variables of the class "Project".
However when I change this search to:
Code:
FullTextQuery fullTextQuery = fullTextEntityManager.createFullTextQuery(booleanQuery, Project.class, AvantProjet.class);
the results which should be of the class are of the (undefined) class "Project_$$_jvst63b_1b", which is a subclass of "Project". The results of "AvantProjet" are however of the type, they are supposted to be.
Can anyone tell me, why the "Project" result are not of that type but of that subtype with the dollars?!
Thanks