2021
07-22
07-22
Mybatis批量操作sql写法示例(批量新增、更新)
在使用foreach时,collection属性值的三种情况:如果传入的参数类型为List时,collection的默认属性值为list,同样可以使用@Param注解自定义keyName;如果传入的参数类型为array时,collection的默认属性值为array,同样可以使用@Param注解自定义keyName;如果传入的参数类型为Map时,collection的属性值可为三种情况:1.遍历map.keys;2.遍历map.values;3.遍历map.entrySet()批量Insert,参数为List<Object>mysql的批量新增sql的写法示...
继续阅读 >