[html]
出现以下错误
orghibernateHibernateException: No Hibernate Session bound to thread and configuration does not allow creation of nontransactional one here
解决方案判断是否已包含管理
解决方法
将事务中添加所监听的类
是否为SpringMVC+Hibernate架构
解决办法
如果你将所有控制器放在一个包下配置文件加入
<context:componentscan basepackage=ntrollers/>
如Controller Service DAO在不同包package下配置文件加入
<context:componentscan basepackage=comweb usedefaultfilters=false>
<context:includefilter type=annotation expression=orgspringframeworkstereotypeController/>
</context:componentscan>