Issue
According to the Hibernate 5.2 doc, Hibernate Query setHint is deprecated now. Is there an alternative to that now?
Solution
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.
Answered By - Haoliang
Answer Checked By - David Goodson (JavaFixing Volunteer)