百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术分析 > 正文

SpringBoot 实现JPA的save方法不更新null属性

liebian365 2024-10-23 13:52 21 浏览 0 评论

作者:yizhiwazi
链接:https://www.jianshu.com/p/4931fbc52ea1

序言:直接调用原生Save方法会导致null属性覆盖到数据库,使用起来十分不方便。本文提供便捷方法解决此问题。

核心思路

如果现在保存某User对象,首先根据主键查询这个User的最新对象,然后将此User对象的非空属性覆盖到最新对象。

核心代码

直接修改通用JpaRepository的实现类,然后在启动类标记此实现类即可。

一、通用CRUD实现类
public class SimpleJpaRepositoryImpl extends SimpleJpaRepository {

 private final JpaEntityInformation entityInformation;
 private final EntityManager em;

 @Autowired
 public SimpleJpaRepositoryImpl(JpaEntityInformation entityInformation, EntityManager entityManager) {
 super(entityInformation, entityManager);
 this.entityInformation = entityInformation;
 this.em = entityManager;
 }

 /**
 * 通用save方法 :新增/选择性更新
 */
 @Override
 @Transactional
 public  S save(S entity) {
 //获取ID
 ID entityId = (ID) entityInformation.getId(entity);
 Optional optionalT;
 if (StringUtils.isEmpty(entityId)) {
 String uuid = UUID.randomUUID().toString();
 //防止UUID重复
 if (findById((ID) uuid).isPresent()) {
 uuid = UUID.randomUUID().toString();
 }
 //若ID为空 则设置为UUID
 new BeanWrapperImpl(entity).setPropertyValue(entityInformation.getIdAttribute().getName(), uuid);
 //标记为新增数据
 optionalT = Optional.empty();
 } else {
 //若ID非空 则查询最新数据
 optionalT = findById(entityId);
 }
 //获取空属性并处理成null
 String[] nullProperties = getNullProperties(entity);
 //若根据ID查询结果为空
 if (!optionalT.isPresent()) {
 em.persist(entity);//新增
 return entity;
 } else {
 //1.获取最新对象
 T target = optionalT.get();
 //2.将非空属性覆盖到最新对象
 BeanUtils.copyProperties(entity, target, nullProperties);
 //3.更新非空属性
 em.merge(target);
 return entity;
 }
 }

 /**
 * 获取对象的空属性
 */
 private static String[] getNullProperties(Object src) {
 //1.获取Bean
 BeanWrapper srcBean = new BeanWrapperImpl(src);
 //2.获取Bean的属性描述
 PropertyDescriptor[] pds = srcBean.getPropertyDescriptors();
 //3.获取Bean的空属性
 Set properties = new HashSet<>();
 for (PropertyDescriptor propertyDescriptor : pds) {
 String propertyName = propertyDescriptor.getName();
 Object propertyValue = srcBean.getPropertyValue(propertyName);
 if (StringUtils.isEmpty(propertyValue)) {
 srcBean.setPropertyValue(propertyName, null);
 properties.add(propertyName);
 }
 }
 return properties.toArray(new String[0]);
 }
}

二、启动类
@EnableJpaRepositories(value = "com.hehe.repository", repositoryBaseClass = SimpleJpaRepositoryImpl.class)
@SpringBootApplication
public class JpaApplication {

 public static void main(String[] args) {
 SpringApplication.run(JpaApplication.class, args);
 }
}

三、实体类和通用Save

@Entity
@Table(name = "T_USER")
@JsonIgnoreProperties({"handler","hibernateLazyInitializer"})
public class User {
 @Id
 private String userId;
 private String username;
 private String password;
 //省略GET/SET
}
public interface UserRepository extends JpaRepository {
}

四、配置文件 application.yml
spring:
 datasource:
 url: jdbc:mysql://localhost:3306/socks?useSSL=false
 username: root
 password: root
 driver-class-name: com.mysql.jdbc.Driver

五、数据库脚本
drop table if exists t_user;
create table t_user (
 user_id varchar(50),
 username varchar(50),
 password varchar(50)
);

insert into t_user values ('1', 'admin', 'admin');
insert into t_user values ('2', 'yizhiwazi', '123456');

六、测试代码
@RestController
public class UserController {

 @Autowired
 private UserRepository userRepository;

 @RequestMapping("/")
 public User get() {

 userRepository.save(new User("1", "", null));

 return userRepository.findById("1").get();
 }
}

整体结构图

在实际项目中,可以直接复制SimpleJpaRepositoryImpl使用,并不影响原有的其它API。

相关推荐

4万多吨豪华游轮遇险 竟是因为这个原因……

(观察者网讯)4.7万吨豪华游轮搁浅,竟是因为油量太低?据观察者网此前报道,挪威游轮“维京天空”号上周六(23日)在挪威近海发生引擎故障搁浅。船上载有1300多人,其中28人受伤住院。经过数天的调...

“菜鸟黑客”必用兵器之“渗透测试篇二”

"菜鸟黑客"必用兵器之"渗透测试篇二"上篇文章主要针对伙伴们对"渗透测试"应该如何学习?"渗透测试"的基本流程?本篇文章继续上次的分享,接着介绍一下黑客们常用的渗透测试工具有哪些?以及用实验环境让大家...

科幻春晚丨《震动羽翼说“Hello”》两万年星间飞行,探测器对地球的最终告白

作者|藤井太洋译者|祝力新【编者按】2021年科幻春晚的最后一篇小说,来自大家喜爱的日本科幻作家藤井太洋。小说将视角放在一颗太空探测器上,延续了他一贯的浪漫风格。...

麦子陪你做作业(二):KEGG通路数据库的正确打开姿势

作者:麦子KEGG是通路数据库中最庞大的,涵盖基因组网络信息,主要注释基因的功能和调控关系。当我们选到了合适的候选分子,单变量研究也已做完,接着研究机制的时便可使用到它。你需要了解你的分子目前已有哪些...

知存科技王绍迪:突破存储墙瓶颈,详解存算一体架构优势

智东西(公众号:zhidxcom)编辑|韦世玮智东西6月5日消息,近日,在落幕不久的GTIC2021嵌入式AI创新峰会上,知存科技CEO王绍迪博士以《存算一体AI芯片:AIoT设备的算力新选择》...

每日新闻播报(September 14)_每日新闻播报英文

AnOscarstatuestandscoveredwithplasticduringpreparationsleadinguptothe87thAcademyAward...

香港新巴城巴开放实时到站数据 供科技界研发使用

中新网3月22日电据香港《明报》报道,香港特区政府致力推动智慧城市,鼓励公私营机构开放数据,以便科技界研发使用。香港运输署21日与新巴及城巴(两巴)公司签署谅解备忘录,两巴将于2019年第3季度,开...

5款不容错过的APP: Red Bull Alert,Flipagram,WifiMapper

本周有不少非常出色的app推出,鸵鸟电台做了一个小合集。亮相本周榜单的有WifiMapper's安卓版的app,其中包含了RedBull的一款新型闹钟,还有一款可爱的怪物主题益智游戏。一起来看看我...

Qt动画效果展示_qt显示图片

今天在这篇博文中,主要实践Qt动画,做一个实例来讲解Qt动画使用,其界面如下图所示(由于没有录制为gif动画图片,所以请各位下载查看效果):该程序使用应用程序单窗口,主窗口继承于QMainWindow...

如何从0到1设计实现一门自己的脚本语言

作者:dong...

三年级语文上册 仿写句子 需要的直接下载打印吧

描写秋天的好句好段1.秋天来了,山野变成了美丽的图画。苹果露出红红的脸庞,梨树挂起金黄的灯笼,高粱举起了燃烧的火把。大雁在天空一会儿写“人”字,一会儿写“一”字。2.花园里,菊花争奇斗艳,红的似火,粉...

C++|那些一看就很简洁、优雅、经典的小代码段

目录0等概率随机洗牌:1大小写转换2字符串复制...

二年级上册语文必考句子仿写,家长打印,孩子照着练

二年级上册语文必考句子仿写,家长打印,孩子照着练。具体如下:...

一年级语文上 句子专项练习(可打印)

...

亲自上阵!C++ 大佬深度“剧透”:C++26 将如何在代码生成上对抗 Rust?

...

取消回复欢迎 发表评论: