Reputation: 739
Currently I am using pure hibernate and I'm pretty happy with it, except casting on calls like session.get/list
and others, but that is not a big deal...
What benefits will I gain with JPA
except better portability?
Upvotes: 2
Views: 246
Reputation: 236112
Maybe better tooling, and vendor support. Easier deployment on compliant application servers, too. But you'll loose Hibernate-specific features, like extended query syntax in HQL. After all, JPA's features are a subset of Hibernate's.
Upvotes: 2