摘要: 1、执行器三种类型 ExecutorType.SIMPLE(默认执行器) 可以返回自增键,只需要在mapper文件中,增加属性: useGeneratedKeys="true" keyProperty="productId",那么自增键会在事务提交后,自动设置到传入的 user对象中 这个类型不做特 阅读全文
posted @ 2021-04-20 13:10 kongbursi 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 一般出现空指针异常: 1、可能是你通过xml或者注解配置的bean对象没有配置好 2、测试的时候要使用SpringJUnit4ClassRunner @RunWith(SpringJUnit4ClassRunner.class) 3、连接数据库密码错误,这样的话数据库没有连接成功,那么mybatis 阅读全文
posted @ 2021-04-20 12:46 kongbursi 阅读(1459) 评论(0) 推荐(0) 编辑