myatisplus的saveOrUpdate的提交总是update问题
背景
很多朋友,想把新增和编辑做在一起。
没想到自己遇到坑了,
自己的saveOrUpdate的提交总是update。
控制台sql输出
UPDATE t_course_type SET course_type_name=?, create_time=?, create_user=?, update_time=?, update_user=?
报错
com.baomidou.mybatisplus.core.exceptions.MybatisPlusException: Prohibition of table update operation
官方文档
// TableId 注解存在更新记录,否插入一条记录 boolean saveOrUpdate(T entity); // 根据updateWrapper尝试更新,否继续执行saveOrUpdate(T)方法 boolean saveOrUpdate(T entity, Wrapper<T> updateWrapper);
分析
发现上面的sql没有where条件。
以为是新增操作,没有id,主键是自增的,就加了个判断
ObjectUtils.isNotEmpty(courseTypeId)。
发现是updateWrapper的eq方法 不能加condition参数。
错误方式
updateWrapper.eq(ObjectUtils.isNotEmpty(courseTypeId), CourseTypeEntity::getCourseTypeId, courseTypeId);
正确方式
去除第一个condition参数。保留2个参数即可。
updateWrapper.eq(CourseTypeEntity::getCourseTypeId, courseTypeId);
成功案例实现源码分享
LambdaUpdateWrapper<CourseTypeEntity> updateWrapper = new LambdaUpdateWrapper<>(); updateWrapper.eq(CourseTypeEntity::getCourseTypeId, courseTypeId); CourseTypeEntity courseTypeEntity = new CourseTypeEntity(); if (courseTypeIdNotEmpty) { courseTypeEntity.setCourseTypeId(courseTypeId) .setUpdateTime(LocalDateTime.now()) .setUpdateUser(username) .setCourseTypeName(courseTypeName) .setCourseCount(courseCount); } else { courseTypeEntity.setCourseTypeName(courseTypeName) .setCreateTime(LocalDateTime.now()) .setCreateUser(username) .setUpdateTime(LocalDateTime.now()) .setUpdateUser(username); } boolean saveOrUpdate = this.saveOrUpdate(courseTypeEntity, updateWrapper);
注意
要去了解这个saveOrUpdate的源码的处理机制。
源码
default boolean saveOrUpdate(T entity, Wrapper<T> updateWrapper) { return this.update(entity, updateWrapper) || this.saveOrUpdate(entity); }
因为该方法默认是使用实体对象的id去匹配,
如果有就更新,
如果没有就插入。
对于主键自增的场景,
一般不会手动设置id,每一次的id都不相同,
所以如果不使用条件选择器,一定是插入。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
前端存token后端获取token代码实例(Spring Boot)
Token其实就是访问资源的凭证,一般是用户通过用户名和密码登录成功之后,服务器将登陆凭证做数字签名,加密之后得到的字符串作为token,这篇文章主要给大家介绍了关于前端存token,Spring Boot后端获取token的相关资料,需要的朋友可以参考下2024-07-07Spring MVC集成springfox-swagger2构建restful API的方法详解
这篇文章主要给大家介绍了关于Spring MVC集成springfox-swagger2构建restful API的相关资料,文中介绍介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。2017-06-06IKAnalyzer使用不同版本中文分词的切词方式实现相同功能效果
今天小编就为大家分享一篇关于IKAnalyzer使用不同版本中文分词的切词方式实现相同功能效果,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧2018-12-12springboot中如何通过main方法调用service或dao
这篇文章主要介绍了springboot中如何通过main方法调用service或dao,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-02-02
最新评论