我使用以下来源试用@Transactional
@Transactional(value = TxType.REQUIRED, rollbackOn = { SQLException.class })
public void insert_Required() throws Exception {
insert("INSERT_REQUIRED");
int i = 1;
if (i == 1) {
throw new SQLException("error");
}
return;
}
private void insert(final String description) throws SQLException {
PreparedStatement pst = connection.prepareStatement(INSERT_STMT);
pst.setString(1, description);
pst.execute();
}
但不幸的是,记录被插入并提交而不是回滚事务。有什么问题?
答案 0 :(得分:1)
检查spring特定xml中的数据源配置中AUTO_COMMIT是否设置为false。