Regardless.
YOU SHOULD NOT BE USING HibernateTemplate.
It was only valuable/benefitial if you are using Hibernate 3.0 and before.
Any version of Hibernate 3.1 or higher, you should be injecting the SessionFactory into your Repositories and calling getCurrentSession()
So much that HibernateTemplate in Spring 3.1 is very deprecated.
Mark