hibernate延时加载

来源:互联网 发布:mac 退出vim模式 编辑:程序博客网 时间:2024/04/28 00:40

org.hibernate.LazyInitializationException: could not initialize proxy - no Session

当a.getB时报的错

解决方案:将实体类做如下修改

@ManyToOne(fetch = FetchType.LAZY ) ---》  @ManyToOne(fetch = FetchType.EAGER )

0 0