我试过,但是没成功,所以我也正在寻求高手指点呢,不过如果是纯ibatis那这样
private SqlMapClient sqlMap = XmlDaoManagerBuilder.buildSqlMap(reader);
public void doSomething(参数1,参数2 ) throws SQLException {
try {
sqlMap.startTransaction();
调用删除语句;
调用添加语句;
sqlMap.commitTransaction();
} finally {
sqlMap.endTransaction();
}
}
当然如果有Spring的话也可以结合Spring的ibatis辅助类进行操作 在新的ibatis版本里已经将事物处理都交给了Spring其实大同小异