Je sélectionne deux colonnes id mais une erreur est spécifiée:
org.hibernate.QueryException: **query specified join fetching, but the owner of the fetched association was not present in the select list**
[FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=r,role=null,tableName=REVISIONS,tableAlias=revision1_,Origin=ENTITY_CHANGED_IN_REVISION entitychan0_,columns={entitychan0_.REV_ID ,className=ru.csbi.registry.domain.envers.Revision}}] [ select ec.id as entityChangeId, r.id as revisionId from ru.csbi.registry.domain.envers.EntityChange as ec inner join fetch ec.revision as r where ec.groupEntityId = :groupEntityId and ec.groupName = :groupName and r.timestamp < :entityDateFrom and r.timestamp > :entityDateTo and ( ec.revisionType in (0, 5, 1, 4, 2 ) and not ( ec.otherGroupEntityModified = false and ec.thisGroupEntityModified = true and ec.rowDataModified = false and ec.collectionOfNotGroupEntityModified = false ) ) group by ec.id, r.id having count(*) > :start order by r.id desc]
Un code:
String hql = " select ec.id as entityChangeId, r.id as revisionId from EntityChange as ec " +
" inner join fetch ec.revision as r " +
" where ec.groupEntityId = :groupEntityId" +
" and ec.groupName = :groupName " +
" and r.timestamp < :entityDateFrom " +
" and r.timestamp > :entityDateTo " +
" and ( " +
" ec.revisionType in (" +
RevisionType.ADD.getRepresentation() + ", " +
RevisionType.ONLY_DATA_PROPERTY_MOD.getRepresentation() + ", " +
RevisionType.BOTH_COLLECTION_AND_PROPERTY_MOD.getRepresentation() + ", " +
RevisionType.ONLY_COLLECTION_PROPERTY_MOD.getRepresentation() + ", " +
RevisionType.DEL.getRepresentation() +
" ) " +
" and not ( "+
"ec.otherGroupEntityModified = false and " +
"ec.thisGroupEntityModified = true and " +
"ec.rowDataModified = false and " +
"ec.collectionOfNotGroupEntityModified = false " +
" ) " +
" ) " +
" group by ec.id, r.id " +
" having count(*) > :start" +
" order by r.id desc";
Comment corriger l'erreur et qu'est-ce que je fais mal?
Utilisez join
au lieu de join fetch
(au fait, c'est inner
par défaut):
String hql = " select ec.id as entityChangeId, r.id as revisionId from EntityChange as ec " +
" join ec.revision as r " + ...
Comme le message d'erreur le dit, join fetch
n'a pas de sens ici, car c'est un indice de performance qui force le chargement de la collection.
Comme vous avez besoin de l'extraction de jointure, la suppression de l'extraction ne répondra pas à vos besoins.
Ce que vous devriez faire à la place est de spécifier une requête de comptage avec elle.
En supposant que vous paginiez le résultat, voici la requête jpa qui prend id comme paramètre et causera le problème que vous avez spécifié. La seconde requête résout ce problème en y ajoutant une requête count.
Remarque: fk_field
est l'attribut de la tableA qui a le numéro un-à-plusieurs rln. La requête de nombre n'utilise pas l'extraction de jointure.
@Query(value = "from TableA a LEFT JOIN FETCH a.fk_field where a.id = :id")
@Query(value = "from TableA a LEFT JOIN FETCH a.fk_field where a.id = :id",
countQuery = " select count(a) from TableA a left join a.fk_field where a.id = :id")