spring如何集成hibernate
现象描述:
由于项目当中使用HibernateDaoSupport类的getSession()方法获取session对象,建立connection后未手动关闭,造成工程运行一段时间后进入长时间不响应状态。因此,使用HibernateDaoSupport的getHibernateTemplate().getCurrentSession()以获得spring负责管理的session对象,后出现异常
异常信息:No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here
原因:
需要配置事务。
解决办法:
在applicationContext.xml文件中配置事务及处理切面,并添加cglib-2.1.3.jar文件。