修改mybatis-plus更新策略

简介: 修改mybatis-plus更新策略


把完善的教育留给子女,乃是最佳的遗产。——斯各特

就像:

https://github.com/apache/incubator-streampark/pull/3615

首先修改dbConfig.setUpdateStrategy(FieldStrategy.IGNORED);

/**
 * mybatis plus setting
 *
 * @return MybatisPlusPropertiesCustomizer
 */
@Bean
public MybatisPlusPropertiesCustomizer mybatisPlusPropertiesCustomizer() {
  return properties -> {
    properties.setTypeAliasesPackage("org.apache.streampark.console.*.entity");
    properties.setTypeEnumsPackage("org.apache.streampark.console.*.enums");
    properties.setMapperLocations(new String[] {"classpath:mapper/*/*.xml"});
    MybatisConfiguration mybatisConfiguration = new MybatisConfiguration();
    mybatisConfiguration.setJdbcTypeForNull(JdbcType.NULL);
    properties.setConfiguration(mybatisConfiguration);
    GlobalConfig globalConfig = GlobalConfigUtils.getGlobalConfig(mybatisConfiguration);
    GlobalConfig.DbConfig dbConfig = globalConfig.getDbConfig();
    dbConfig.setIdType(IdType.AUTO);
    dbConfig.setUpdateStrategy(FieldStrategy.IGNORED);
    // close mybatis-plus banner
    globalConfig.setBanner(false);
    properties.setGlobalConfig(globalConfig);
  };
}

然后对于updateById的地方,进行调整,例如

@Override
public boolean updateById(Application application) {
  Application app = getById(application.getId());
  BeanUtil.copyIgnoreNull(application, app, Application::getId, Application::getCreateTime);
  app.setAppId(application.getAppId());
  app.setJobId(application.getJobId());
  app.setJobManagerUrl(application.getJobManagerUrl());
  app.setRestartSize(application.getRestartSize());
  app.setAlertId(application.getAlertId());
  app.setEndTime(application.getEndTime());
  app.setHotParams(application.getHotParams());
  app.setFlinkClusterId(application.getFlinkClusterId());
  return super.updateById(app);
}

这里用到的是

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.streampark.console.core.utils;
import cn.hutool.core.bean.copier.CopyOptions;
import cn.hutool.core.lang.func.Func1;
/** Util class for bean */
public class BeanUtil {
  /**
   * bean copy ignore null field
   *
   * @param source the source object for copy
   * @param target the target object for copy
   */
  @SafeVarargs
  public static <P, R> void copyIgnoreNull(
      Object source, Object target, Func1<P, R>... ignoreProperties) {
    cn.hutool.core.bean.BeanUtil.copyProperties(
        source,
        target,
        CopyOptions.create().ignoreNullValue().setIgnoreProperties(ignoreProperties));
  }
}
相关文章
|
SQL 算法 前端开发
【MybatisPlus】MP解决四种表与实体的映射问题,以及id自增策略
MP解决四种表与实体的映射问题,以及id自增策略
2493 0
【MybatisPlus】MP解决四种表与实体的映射问题,以及id自增策略
|
2月前
|
前端开发 JavaScript Java
技术分享:使用Spring Boot3.3与MyBatis-Plus联合实现多层次树结构的异步加载策略
在现代Web开发中,处理多层次树形结构数据是一项常见且重要的任务。这些结构广泛应用于分类管理、组织结构、权限管理等场景。为了提升用户体验和系统性能,采用异步加载策略来动态加载树形结构的各个层级变得尤为重要。本文将详细介绍如何使用Spring Boot3.3与MyBatis-Plus联合实现这一功能。
109 2
|
4月前
|
算法 Java 数据库连接
mybatis plus 主键策略
mybatis plus 主键策略
53 2
|
4月前
|
Oracle 关系型数据库 Java
mybatis使用statement.getGenreatedKeys(); useGeneratedKeys=”true”;使用自增主键获取主键值策略和Oracle不支持自增,Oracle使用序列
mybatis使用statement.getGenreatedKeys(); useGeneratedKeys=”true”;使用自增主键获取主键值策略和Oracle不支持自增,Oracle使用序列
|
6月前
|
算法 BI 数据库
MyBatisPlus查询条件设置、映射匹配兼容性、id生成策略、多数据操作
MyBatisPlus查询条件设置、映射匹配兼容性、id生成策略、多数据操作
361 3
|
6月前
|
SQL 存储 算法
Mybatis-Plus- CRUD接口-主键策略-自动填充和乐观锁-分页-逻辑删除-条件构造器和常用接口
Mybatis-Plus- CRUD接口-主键策略-自动填充和乐观锁-分页-逻辑删除-条件构造器和常用接口
|
6月前
|
缓存 Java 数据库连接
MyBatis三级缓存实战:高级缓存策略的实现与应用
MyBatis三级缓存实战:高级缓存策略的实现与应用
123 0
MyBatis三级缓存实战:高级缓存策略的实现与应用
|
存储 SQL NoSQL
mybatis-plus小技能: 分表策略(按年分表和按月分表)
业务场景: 日志、交易流水表或者其他数据量大的表,通过日期进行了水平分表,需要通过日期参数,动态的查询数据。 实现思路:利用MybatisPlus的动态表名插件DynamicTableNameInnerInterceptor ,实现Sql执行时,动态的修改表名。
6441 3
mybatis-plus小技能: 分表策略(按年分表和按月分表)
|
6月前
|
算法 Scala 数据库
MyBatisPlus-ASSIGN_ID、ASSIGN_UUID策略、雪花算法及简化配置
MyBatisPlus-ASSIGN_ID、ASSIGN_UUID策略、雪花算法及简化配置
1200 0
|
6月前
|
关系型数据库 MySQL 数据库
MyBatisPlus-AUTO策略及INPUT策略
MyBatisPlus-AUTO策略及INPUT策略
131 0