7

如果打开自动提交,回滚会起作用吗?如果不是,那么关闭自动提交的含义是什么?

@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);
    }
}
4

1 回答 1

3

是的。如果你查看代码,你会发现当spring使用这种方式进行事务时。如果您的配置是自动提交为真,那么它会将其更改为假,并在事务后将其更改为真。

于 2013-03-18T12:36:36.837 回答