真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot如何實(shí)現(xiàn)JPA的save方法不更新null屬性

這篇文章主要介紹SpringBoot如何實(shí)現(xiàn)JPA的save方法不更新null屬性,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

成都創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營(yíng)銷推廣、網(wǎng)站重做改版、廈門網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為廈門等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。

核心思路

如果現(xiàn)在保存某User對(duì)象,首先根據(jù)主鍵查詢這個(gè)User的最新對(duì)象,然后將此User對(duì)象的非空屬性覆蓋到最新對(duì)象。

核心代碼

直接修改通用JpaRepository的實(shí)現(xiàn)類,然后在啟動(dòng)類標(biāo)記此實(shí)現(xiàn)類即可。

一、通用CRUD實(shí)現(xiàn)類

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重復(fù)
      if (findById((ID) uuid).isPresent()) {
        uuid = UUID.randomUUID().toString();
      }
      //若ID為空 則設(shè)置為UUID
      new BeanWrapperImpl(entity).setPropertyValue(entityInformation.getIdAttribute().getName(), uuid);
      //標(biāo)記為新增數(shù)據(jù)
      optionalT = Optional.empty();
    } else {
      //若ID非空 則查詢最新數(shù)據(jù)
      optionalT = findById(entityId);
    }
    //獲取空屬性并處理成null
    String[] nullProperties = getNullProperties(entity);
    //若根據(jù)ID查詢結(jié)果為空
    if (!optionalT.isPresent()) {
      em.persist(entity);//新增
      return entity;
    } else {
      //1.獲取最新對(duì)象
      T target = optionalT.get();
      //2.將非空屬性覆蓋到最新對(duì)象
      BeanUtils.copyProperties(entity, target, nullProperties);
      //3.更新非空屬性
      em.merge(target);
      return entity;
    }
  }

  /**
   * 獲取對(duì)象的空屬性
   */
  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]);
  }
}

二、啟動(dòng)類

@EnableJpaRepositories(value = "com.hehe.repository", repositoryBaseClass = SimpleJpaRepositoryImpl.class)
@SpringBootApplication
public class JpaApplication {

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

三、實(shí)體類和通用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

五、數(shù)據(jù)庫(kù)腳本

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');

六、測(cè)試代碼

@RestController
public class UserController {

  @Autowired
  private UserRepository userRepository;

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

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

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

整體結(jié)構(gòu)圖

在實(shí)際項(xiàng)目中,可以直接復(fù)制SimpleJpaRepositoryImpl使用,并不影響原有的其它API。

SpringBoot如何實(shí)現(xiàn)JPA的save方法不更新null屬性

以上是“SpringBoot如何實(shí)現(xiàn)JPA的save方法不更新null屬性”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


分享標(biāo)題:SpringBoot如何實(shí)現(xiàn)JPA的save方法不更新null屬性
鏈接地址:http://weahome.cn/article/igsjhd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部