Understanding HHH90000016 error in Hibernate -
i better understand, , possibly fix, following warning:
2016-07-04 17:04:33,151 warn [ajp-nio-8009-exec-3] org.hibernate.orm.deprecation - tocolumns - hhh90000016: found use of deprecated 'collection property' syntax in hql/jpql query [null.elements]; use collection function syntax instead [elements(null)].
it seems query contains expression ? in associatedusers.elements
associatedusers set<string>
. have used such expression in past changed them new syntax using filter helper facility.
however debugging showed me real expression is
((enabled = ?) , (organizationid = ?) , ? in elements(associatedusers))
why error logged if use suggested syntax? hibernate version 5.1.0
Comments
Post a Comment