简介:mybatis的批量操作减少数据库连接次数 批量insert: 批量update:使用步骤:(1)在全局配置文件applcationContext.xml中加入(2)在service实现中添加:demo:mapper:mapper.xml :方式一、需要修改数据库属性添加allowMutiQueries=true,例如:jdbc.url=jdbc:mysql://localhost:3306/mybatis?allowMultiQueries=true方式二、需要开启事务提交,在applcationContext.xml中添加BATCH
暂无评论