R0b1n
R0b1n

Reputation: 593

Deprecated: Hibernate setHint

According to the Hibernate 5.2 doc, Hibernate Query setHint is deprecated now. Is there an alternative to that now?

Upvotes: 2

Views: 1631

Answers (1)

Haoliang
Haoliang

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.

Upvotes: 2

Related Questions