基于mybatis-config.xml声明SQL Session

基于mybatis-config.xml声明SQL Session,第1张

基于mybatis-config.xml声明SQL Session

 需要先配置这个xml基于mybtis的XML配置,完成对mySql数据库的SQL语句配置_你挚爱的强哥❤给你发来1条消息❤-CSDN博客.https://s-z-q.blog.csdn.net/article/details/122758483

SqlSession sqlSession = new SqlSessionFactoryBuilder().build(Resources.getResourceAsReader("mybatis-config.xml")).openSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List u = mapper.selectAll();
for (Users a : u) System.out.println(a.name);System.out.println(mapper.select(55));
mapper.insert(new User("插入的姓名", 66));
mapper.delete(new User(55));
mapper.update(new User(60, "修改后的姓名", 33));
sqlSession.commit();sqlSession.close();

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5715983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存