I've been doing some work with Hibernate 3.5 and Spring 3 recently, I'm fairly new with Hibernate and thought the HibernateDaoSupport class in Spring made it nice and easy to use Hibernate with my domain classes.

However, will searching for an unrelated question I saw some one mention that the HibernateDaoSupport is not the best way to use Spring and Hibernate. Can any one shed any light on:

  • A) Why is not recommended?
  • B) The best (or at least the accepted) way to integrate Hibernate and Spring?

Thanks.

link|improve this question

feedback

2 Answers

up vote 19 down vote accepted

Using HibernateDaoSupport/HibernateTemplate is not recommended since it unnecessarily ties your code to Spring classes.

Using these classes was inevitable with older versions of Hibernate in order to integrate support of Spring-managed transactions.

However, since Hibernate 3.0.1 you don't need it any more - you can write a code against a plain Hibernate API while using Spring-managed transactions. All you need is to configure Spring transaction support, inject SessionFactory and call getCurrentSession() on it when you need to work with session.

Another benefit of HibernateTemplate is exception translation. Without HibernateTemplate the same functionality can be achieved by using @Repository annotation, as shown in Gareth Davis's answer.

See also:

link|improve this answer
Thanks for the input. And thanks for the link to the Spring doc, it's pretty clear actually. I'll mark your post as the answer since it answers my main questions, thanks. – C0deAttack Feb 24 '11 at 14:28
1  
Alternatively to SessionFactory you could use the JPA 2 implementation of Hibernate (inject an EntityManager as starting point). – Jan Aug 15 '11 at 10:24
feedback

For my money there is nothing wrong with using HibernateDaoSupport. It isn't deprecated in spring 3.0.

Can you provide the question number that you found, it maybe they where refering to a very specific use case.

The alternative is to use the @Repository annotation. This will wire in the same exception translation (one of the big benefits of the HibernateTemplate) and allow you to either use your own super class or just simply to avoid extending a third party framework class.

@Repository
public class YourFooDao {

    @Resource
    private SessionFactory sessionFactory;

    private Foo get(long id){
        return (Foo) sessionFactory.getCurrentSession().get(id);
    }
}
link|improve this answer
+1 - I still prefer HibernateDaoSupport and HibernateTemplate, since they provide a richer API than the raw Hibernate Session API. – skaffman Feb 24 '11 at 14:25
Thanks for the tip about @Repository annotation, I'll certainly find out more about it in the docs. I couldn't find the thread where I first saw this mention, sorry. – C0deAttack Feb 24 '11 at 14:27
@skaffman well if Hibernate has a bad API, then maybe Hibernate shouldn't be used (I only use it as JPA provider) – Sean Patrick Floyd Feb 24 '11 at 15:56
@Sean: I didn't say it was a bad API. It's just that Spring's is very slightly better. – skaffman Feb 24 '11 at 15:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.