About session closing in HibernateDaoSupport
Hi,
Using a transcation manager (JTA on Weblogic), how Spring is closing the hibernate session when I call a manager method which use many HibernateDaoSupport.
When I monitoring my Weblogic Jdbc Pool, I have many open connections open when only one transcation. And the connection are not closed after commit but with hibernate Session.finalize().
In my DAO, my methods contains only, for example :
Code:
public void save(BsContract audit) {
getHibernateTemplate().save(audit);
}