SpringDataJpa的no Session错误的解决方案

解决no Session错误
错误代码:

Could not write content: could not initialize proxy - no Session (through reference chain: cn.lzj.aisell.common.UIPage[“rows”]->java.util.UnmodifiableRandomAccessList[0]->cn.lzj.aisell.domain.Employee[“department”]->cn.lzj.aisell.domain.Department_$$_jvste79_0[“id”]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: could not initialize proxy - no Session (through reference chain:

问题原因:
因为在数据懒加载时,关闭EntityManager之后,依然在使用它操作数据库
在这里插入图片描述
解决方案:
在web.xml中添加OpenEntityManagerInViewFilter

<!--解决获取部门懒加载noSession,配置JPA:OpenEntityMangerInViewFilter/Hibernater:OpenSessionMangerInViewFilter-->
    <!--Spring集成JPA必须配置-->
    <filter>
        <filter-name>OpenEntityMangerInViewFilter</filter-name>
        <filter-class>org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>OpenEntityMangerInViewFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

注意在Spring集成JPA时,必须配置OpenSessionMangerInViewFilter这个过滤器,否则会出现no Session错误

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值