Spring学习笔记 (16)

删掉刚才插入的数据,再次测试!

@Test public void test2(){ ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); UserMapper mapper = (UserMapper) context.getBean("userDao"); List<User> user = mapper.selectUser(); System.out.println(user); }

思考问题?

为什么需要配置事务?

如果不配置,就需要我们手动提交控制事务;

事务在项目开发过程非常重要,涉及到数据的一致性的问题,不容马虎!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wspgwz.html