Hi found below forum which describes not to use Spring hibernate template:
it says:
The HibernateTemplate isn't needed anymore since hibernate 3.0.1, since that release it became easier to plugin nicely to hibernate, before that spring needed some trickery, proxing and hackery to manage transactions, thread bound sessions and exception translation. Now with the newer versions of hibernate that isn't needed anymore, you still get all the nice stuff exception translation, session management etc. but without using any spring specific classes. Which imho is really nice it makes the use of spring even less obtrusive.
I used HibernateTemplate and Dao support, is it required to use these API in a new application?
Can I have latest some sample code to integrate Hibernate with Spring framework.
2)
This style is similar to that of the Hibernate reference documentation and examples, except for holding the SessionFactory in an instance variable. We strongly recommend such an instance-based setup over the old-school static HibernateUtil class from Hibernate's CaveatEmptor sample application.
since many place we are using SessionFactory, which is the best way to get session since earlier i used HibernateUtil?