Hibernate没有在Spring Boot Project中抛出LazyInitializationException

时间:2017-10-22 17:49:01

标签: java spring hibernate jpa

我使用Hibernate 5.0处理Spring Boot项目。不幸的是,即使提交了事务,Hibernate也会在不抛出Dim LastRow as long 'Active sheet is sheet1 LastRow1 = Sheets("sheet1").Range("A" & Rows.Count).End(xlUp).Row 的情况下读取延迟的初始化对象。如何在事务之外启用LazyInitializationException

(当前行为隐藏了代码中的错误。)

1 个答案:

答案 0 :(得分:7)

Spring引导具有属性spring.jpa.open-in-view,默认值为true。这将注册一个OpenEntityManagerInViewInterceptor,以保持整个请求的事务处于活动状态。

尝试将此添加到您的application.properties文件中:

spring.jpa.open-in-view=false

A discussion about it on GitHub

Some documentation about Spring Boot properties

希望它有所帮助!