Are Restrictions and Projections deprecate from Hibernate 5.2 onwards? If so what are the JPA Criteria API equivalents.
Other Related Q's -
Providing an answer for Hibernate 5.6.x:
Restrictions
is not marked deprecated. Check the corresponding JavaDoc.
Projections
, likewise, is also not marked deprecated, see related JavaDoc.
As it stands now, both classes are not deprecated for version 5.6.x. Nevertheless, Hibernate’s Criteria API is deprecated as such, and ongoing development (version 6+) will focus on the JPA Criteria API.
However, it seems open for debate if the JPA community will move forward towards the vendor-agnostic CriteriaBuilder
.
Check the deprecation list of Hibernate‘s JavaDoc for an overview and further details.