mybatis 插入数据,model的属性存在null,插入报错
在使用mybatis 进行insert时,如果字段值存在null的情况,会出现插入失败的情况,解决方案:
如果使用spring boot:
@Bean ConfigurationCustomizer mybatisConfigurationCustomizer() { return new ConfigurationCustomizer() { @Override public void customize(org.apache.ibatis.session.Configuration configuration) { configuration.setJdbcTypeForNull(JdbcType.NULL); } }; }
原文地址:https://www.cnblogs.com/lovehunterYjj/p/9479564.html
时间: 2024-10-03 03:49:47