美文网首页
SpringBoot JPA的单元测试 could not in

SpringBoot JPA的单元测试 could not in

作者: Morgan7 | 来源:发表于2018-11-23 23:27 被阅读0次
    could not initialize proxy - no Session
    

    在测试方法上面加@Transactional

    //表示取出这条数据时,它关联的数据也同时取出放入内存中
    fetch = FetchType.EAGER
    
    //取出这条数据时,它关联的数据并不取出来,在同一个session中,什么时候要用,就什么时候取(再次访问数据库)。
    fetch = FetchType.LAZY
    

    相关文章

      网友评论

          本文标题:SpringBoot JPA的单元测试 could not in

          本文链接:https://www.haomeiwen.com/subject/udasqqtx.html