你可以调用一个方法,该方法需要一个不在的方法中的事务吗?
@TransactionAttribute(value = TransactionAttributeType.NEVER)
public void DoSomething(final List<Item> items) {
//can you call a method that requires a transaction here ?
for (Item i : items) {
methodCall(item);
}
@TransactionAttribute(value = TransactionAttributeType.REQUIRES_NEW)
public void methodCall(final Item item) {
// access lazily loaded item properties
item.getSalesOrder();
item.getAllocation();
//throws org.hibernate.LazyInitializationException: could not initialize proxy - no Session
}
.NEVER属性表示它会保证方法不会在事务中运行,但是调用该方法中的其他方法呢
答案 0 :(得分:10)
注释仅定义在调用带注释的方法时必须存在的必需事务状态(在这种情况下,事务不能存在)。它不限制在注释方法的执行中可能发生的事情。因此,在此方法中,您可以毫无问题地启动新事务。
在您提供的示例中,您可以在事务设置为NEVER的方法中调用需要事务的方法。在这种情况下,将为需要事务的方法调用创建一个新事务。如果内部方法标有MANDATORY设置,则内部方法调用将失败,因为现有事务不存在,并且MANDATORY设置不会自动为您创建一个。