如果启用了自动提交,是否会回滚?如果没有,那么关闭自动提交的含义是什么?
@Transactional(rollbackFor = {ManagerException.class})
public myMethod()....{
System.out.printLn(my_spring_stored_procedure.getDataSource()
.getConnection().getAutoCommit()) //true
....
try {
result = this.my_spring_stored_procedure.execute(params);
}catch(DataAccessException e){
throw new ManagerException(e);
}
}
答案 0 :(得分:2)
是。如果你检查代码,你会发现当spring使用这种方式进行交易时。如果您的配置是自动提交为真,那么它会将其更改为false,并且在事务之后它将其更改为true。