标签: java spring jdbc oracle-sqldeveloper
我正在使用Spring JDBC,我想将autocommit设置为false,只对其中一个类。
我尝试过以下操作但是当我打印出值时,自动提交仍然是正确的:
getJdbcTemplate().getDataSource().getConnection().setAutoCommit(false)); getJdbcTemplate().update(UPDATE_QUERY,params);
我该怎么做?