What are the ways to access Hibernate by using Spring?

Answered

What are the ways to access Hibernate by using Spring?

Ninja Asked on 19th September 2018 in Spring DAO.
Add Comment
1 Answer(s)
Best answer

There are two approaches to Spring’s Hibernate integration:

  • Inversion of Control with a HibernateTemplate and Callback
  • Extending HibernateDaoSupport and Applying an AOP Interceptor
Ninja Answered on 19th September 2018.
Add Comment