Mybatis实现批量更新操作
方式一:
updatetableName
name=${item.name},
name2=${item.name2}
whereid=${item.id}
但Mybatis映射文件中的sql语句默认是不支持以";"结尾的,也就是不支持多条sql语句的执行。所以需要在连接mysql的url上加&allowMultiQueries=true这个才可以执行。
方式二:
updatetableName
whenid=#{cus.id}then#{cus.name}
whenid=#{cus.id}then#{cus.age}
id=#{cus.id}
这种方式貌似效率不高,但是可以实现,而且不用改动mysql连接
效率参考文章:https://www.nhooo.com/article/155835.htm
方式三:
临时改表sqlSessionFactory的属性,实现批量提交的java,但无法返回受影响数量。
publicintupdateBatch(List