I know this does not answer your question directly but don't use HibernateTemplate/HibernateDaoSupport it isn't recommended use the SessionFactory directly.
As a matter of fact as of hibernate 4 its not only not recommended but it has been removed altogether. See the below Jira
https://jira.springsource.org/browse/SPR-8096
Eliminate HibernateTemplate and friends (e.g. HibernateCallback in favor of Spring's more modern 'Native Hibernate DAO' approach
Unless you are using a very old version of hibernate in a legacy application it should be avoided.