springboot 項目mybatis plus 設置 jdbcTypeForNull (oracle數據庫需配置JdbcType.NULL, 默認是Other)

方法1:

application.yml

mybatis-plus:
  configuration: jdbc-type-for-null: 'null' #注意:單引號 

方法2:

查看mp-starter-源碼, MybatisPlusAutoConfiguration, 能夠發現,第119行有一個configurationCustomizers,能夠修改configurationjava

自定義一個,配上就完工git

@Bean public ConfigurationCustomizer configurationCustomizer(){ return new MybatisPlusCustomizers(); } class MybatisPlusCustomizers implements ConfigurationCustomizer { @Override public void customize(org.apache.ibatis.session.Configuration configuration) { configuration.setJdbcTypeForNull(JdbcType.NULL); }

方法3:

第一步:把 可更新爲空的 javabean 屬性前加上註解:@TableField(el = "username, jdbcType=VARCHAR")spring

@Email
@TableField(el = "email, jdbcType=VARCHAR")
private String email;apache

 第二步: 使用updateAllColumnById方法,而不是updateById.    如:
 this.baseMapper.updateAllColumnById(user); 
相關文章
相關標籤/搜索