* 如果只需增加方法,保留MyBatis plus自带方法, * 可以先获取super.getMethodList(),再添加add */@OverridepublicList<AbstractMethod>getMethodList(Class<?> mapperClass){// 注意:此SQL注入器继承了DefaultSqlInjector(默认注入器),调用了DefaultSqlInjector的getMethodList方法,保留了mybatis-plus的自带方法List<Ab...
AI代码助手复制代码 在Mapper XML文件中编写SQL语句,使用ON DUPLICATE KEY UPDATE实现批量新增或修改,例如: <insertid="batchInsertOrUpdate"useGeneratedKeys="true"keyProperty="id"> INSERT INTO user(username, password) VALUES <foreach collection="list"item="item"separator=","> (#{item.username}, #{item...