org.hibernate.LazyInitializationException解决办法

ERROR org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler - Exception occurred during processing request: [org.hibernate.LazyInitializationException: could not initialize proxy - no Session, could not initialize proxy - no Session]

仔细看英文,懒加载存在,session 都关了,获取不大数据。
解决办法:lazy=“false”
若是用注解生成的。fetch = FetchType.EAGER
当然了,这样的话,你的缓存就不起作用了。
另外解决办法,获取数据时,使用用left join fetch或inner join fetch语法。
当然了,还有一种解决办法。

<filter> 
     <filter-name>hibernateFilterfilter-name> 
     <filter-class>    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter 
     filter-class> 
filter 
<filter-mapping> 
     <filter-name>hibernateFilterfilter-name> 
     *.do 
filter-mapping>

注意了,上面只是数据少的时候,要是数据多了,要是将懒加载取消,后果可想而知。不过话又说过来,这些都是轻量级框架。自然不至于太尴尬。

你可能感兴趣的:(hibernate)