为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的mybatis是默认 自动提交的呢

当我直接 commit的时候(没写sqlSession.close()),控制台出日志了, 但是数据库没有更改。

去掉commit也一样。

而当我 在commit后面加上 sqlSession.close()后, 数据库更改了。

去掉commit,数据库也会更改。

public static void main(String[] args) {
delete(5);
List<Student> list = queryStudentByID(new Student(5, 12, "li"));
System.out.println(list);
}
public static void delete(int id) {
DBAccess dbAccess = new DBAccess();
SqlSession sqlSession = null;
try {
sqlSession = dbAccess.getSqlSession();
sqlSession.selectList("Student.delete", id);
sqlSession.commit();
//sqlSession.close();

控制台

DEBUG [main] - ==>  Preparing: DELETE FROM student WHERE id =? 

DEBUG [main] - ==> Parameters: 5(Integer)

DEBUG [main] - ==>  Preparing: SELECT * FROM student WHERE id = ? 

DEBUG [main] - ==> Parameters: 5(Integer)

DEBUG [main] - <==      Total: 1

[Student [id=5, age=14, name=li]]


正在回答

1 回答

你这个方法是根据id来删除数据库表的数据.但是你在方法里面却用了selectList()方法,这个方法是用来查询返回多条数据时用的.如果你要删除,你就用delete()这个方法.还有一点是Mybatis对数据库的增删改操作才需要提交事务.对查询操作不需要提交事务.SqlSession关不关闭与对数据库操作返回的结果集没有任何影响.

把图片代码中的第11行

:sqlSession.selectList("Student.delete", id);

改为:sqlSession.delete("Student.delete", id);


0 回复 有任何疑惑可以回复我~
#1

风中过客 提问者

谢谢, 没注意到后面改成了delete
2016-02-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我的mybatis是默认 自动提交的呢

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信