mybatisPlus更新字段值为null怎么解决

您所在的位置:网站首页 SQL新增字段值 mybatisPlus更新字段值为null怎么解决

mybatisPlus更新字段值为null怎么解决

2023-04-15 04:04| 来源: 网络整理| 查看: 265

mybatisPlus更新字段值为null怎么解决 发布时间:2023-04-12 17:45:39 来源:亿速云 阅读:87 作者:iii 栏目:开发技术

这篇文章主要介绍“mybatisPlus更新字段值为null怎么解决”,在日常操作中,相信很多人在mybatisPlus更新字段值为null怎么解决问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”mybatisPlus更新字段值为null怎么解决”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

问题描述

用Mybatis-Plus的update()或者updateById()来更新数据时,无法将字段设置为null值(更新后数据还是原来的值)。

TableField源码/*  * Copyright (c) 2011-2020, baomidou ([email protected]).  * 

 * Licensed 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  * 

 * https://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 com.baomidou.mybatisplus.annotation; import org.apache.ibatis.mapping.ParameterMapping; import org.apache.ibatis.mapping.ResultMapping; import org.apache.ibatis.type.JdbcType; import org.apache.ibatis.type.TypeHandler; import org.apache.ibatis.type.UnknownTypeHandler; import java.lang.annotation.*; /**  * 表字段标识  *  * @author hubin sjy tantan  * @since 2016-09-09  */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD, ElementType.ANNOTATION_TYPE}) public @interface TableField {     /**      * 数据库字段值,      * 不需要配置该值的情况:      *  当 {@link com.baomidou.mybatisplus.core.MybatisConfiguration#mapUnderscoreToCamelCase} 为 true 时,      * (mp下默认是true,mybatis默认是false), 数据库字段值.replace("_","").toUpperCase() == 实体属性名.toUpperCase()       *  当 {@link com.baomidou.mybatisplus.core.MybatisConfiguration#mapUnderscoreToCamelCase} 为 false 时,      * 数据库字段值.toUpperCase() == 实体属性名.toUpperCase()      */     String value() default "";     /**      * 是否为数据库表字段      * 默认 true 存在,false 不存在      */     boolean exist() default true;     /**      * 字段 where 实体查询比较条件      * 默认 {@link SqlCondition.EQUAL}      */     String condition() default "";     /**      * 字段 update set 部分注入, 该注解优于 el 注解使用      * 

     * 例1:@TableField(.. , update="%s+1") 其中 %s 会填充为字段      * 输出 SQL 为:update 表 set 字段=字段+1 where ...      * 

     * 例2:@TableField(.. , update="now()") 使用数据库时间      * 输出 SQL 为:update 表 set 字段=now() where ...      */     String update() default "";     /**      * 字段验证策略之 insert: 当insert操作时,该字段拼接insert语句时的策略      * IGNORED: 直接拼接 insert into table_a(column) values (#{columnProperty});      * NOT_NULL: insert into table_a(column) values (#{columnProperty})      * NOT_EMPTY: insert into table_a(column) values (#{columnProperty})      *      * @since 3.1.2      */     FieldStrategy insertStrategy() default FieldStrategy.DEFAULT;     /**      * 字段验证策略之 update: 当更新操作时,该字段拼接set语句时的策略      * IGNORED: 直接拼接 update table_a set column=#{columnProperty}, 属性为null/空string都会被set进去      * NOT_NULL: update table_a set column=#{columnProperty}      * NOT_EMPTY: update table_a set column=#{columnProperty}      *      * @since 3.1.2      */     FieldStrategy updateStrategy() default FieldStrategy.DEFAULT;     /**      * 字段验证策略之 where: 表示该字段在拼接where条件时的策略      * IGNORED: 直接拼接 column=#{columnProperty}      * NOT_NULL: column=#{columnProperty}      * NOT_EMPTY: column=#{columnProperty}      *      * @since 3.1.2      */     FieldStrategy whereStrategy() default FieldStrategy.DEFAULT;     /**      * 字段自动填充策略      */     FieldFill fill() default FieldFill.DEFAULT;     /**      * 是否进行 select 查询      * 

大字段可设置为 false 不加入 select 查询范围

     */     boolean select() default true;     /**      * 是否保持使用全局的 Format 的值      * 

 只生效于 既设置了全局的 Format 也设置了上面 {@link #value()} 的值 

     *  如果是 false , 全局的 Format 不生效       *      * @since 3.1.1      */     boolean keepGlobalFormat() default false;     /**      * JDBC类型 (该默认值不代表会按照该值生效),      * 只生效与 mp 自动注入的 method,      * 建议配合 {@link TableName#autoResultMap()} 一起使用      * 

     * {@link ResultMapping#jdbcType} and {@link ParameterMapping#jdbcType}      *      * @since 3.1.2      */     JdbcType jdbcType() default JdbcType.UNDEFINED;     /**      * 类型处理器 (该默认值不代表会按照该值生效),      * 只生效与 mp 自动注入的 method,      * 建议配合 {@link TableName#autoResultMap()} 一起使用      * 

     * {@link ResultMapping#typeHandler} and {@link ParameterMapping#typeHandler}      *      * @since 3.1.2      */     Class



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3