将autocommit = false设置为仅一个类

时间:2015-10-15 08:51:05

标签: java spring jdbc oracle-sqldeveloper

我正在使用Spring JDBC,我想将autocommit设置为false,只对其中一个类。

我尝试过以下操作但是当我打印出值时,自动提交仍然是正确的:

getJdbcTemplate().getDataSource().getConnection().setAutoCommit(false));
getJdbcTemplate().update(UPDATE_QUERY,params);

我该怎么做?

0 个答案:

没有答案