1.Hbernate映射关系 no session or session was closed问题
在项目的web.xml的前面添加
<!-- 配置Spring的OpenSessionInViewFilter以解决懒加载异常的问题 -->
<filter>
<filter-name>OpenSessionInViewFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>OpenSessionInViewFilter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
以此来延长数据库会话session时间
2.假如出现
org.hibernate.InstantiationException: No default constructor for entity: com.tks.skyproject.model.ImplementLogAttach
这种错误
应该检查 javabean中是否有 相应的构造方法
错误原因 : 该方法缺少构造方法
原文地址:https://www.cnblogs.com/ccq-190203/p/10663935.html
时间: 2024-11-29 11:07:14