Reputation: 593
According to the Hibernate 5.2 doc, Hibernate Query setHint is deprecated now. Is there an alternative to that now?
Upvotes: 2
Views: 1631
Reputation: 1264
If you scroll to the top of the document, you can see that using org.hibernate.Query is deprecated since 5.2. You can use org.hibernate.query.Query instead. Here's the new documentation.
org.hibernate.Query
org.hibernate.query.Query