MyBatis SQLIntegrityConstraintViolationException: Column ‘‘ cannot be null问题解决

勤奋不是嘴上说说而已,而是实际的行动,在勤奋的苦度中持之以恒,永不退却。业精于勤,荒于嬉;行成于思,毁于随。在人生的仕途上,我们毫不迟疑地选择勤奋,她是几乎于世界上一切成就的催产婆。只要我们拥着勤奋去思考,拥着勤奋的手去耕耘,用抱勤奋的心去对待工作,浪迹红尘而坚韧不拔,那么,我们的生命就会绽放火花,让人生的时光更加的闪亮而精彩。

导读:本篇文章讲解 MyBatis SQLIntegrityConstraintViolationException: Column ‘‘ cannot be null问题解决,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

问题

在ELK日志查询平台看到如下报错信息:

org.springframework.dao.DataIntegrityViolationException: 
### Error updating database.  Cause: java.sql.SQLIntegrityConstraintViolationException: Column '' cannot be null
### The error may exist in class path resource [mapper/WidgetMapper.xml]
### The error may involve com.johnny.common.mapper.WidgetMapper.update-Inline
### The error occurred while setting parameters
### SQL: UPDATE widget SET update_time = # {updateTime}, update_user_id = ? where widget_id = ?
### Cause: java.sql.SQLIntegrityConstraintViolationException: Column 'update_time' cannot be null
	at org.springframework.jdbc.support.SQLExceptionSubclassTranslator.doTranslate(SQLExceptionSubclassTranslator.java:87)
	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:72)
	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:81)
	at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)

查找到报错的MyBatis的mapper.xml代码片段如下:

<update id="update" parameterType="com.johnny.common.po.Widget">
UPDATE widget
    <set>
        <if test="updateTime != null and updateTime !=''">
            update_time = # {updateTime},
        </if>
        <if test="updateUserId != null and updateUserId !=''">
            update_user_id = #{updateUserId,jdbcType=VARCHAR},
        </if>
    </set>
    where widget_id = #{widgetId}
</update>

排查

本地调试虽然不能发现复现问题,但是也有报错如下:
在这里插入图片描述
具体的报错信息:

Error updating database.  Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect datetime value: '1' for column 'update_time' at row 1
### The error may exist in file [D:\code\cbdbi\cloud-aaa\cloud-aaa-service\target\classes\mapper\WidgetMapper.xml]
### The error may involve com.johnny.common.mapper.WidgetMapper.update-Inline
### The error occurred while setting parameters
### SQL: UPDATE widget SET update_time = # {updateTime}, update_user_id = ? where widget_id = ?
### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect datetime value: '1' for column 'update_time' at row 1

从截图来看,updateTime是有数据的,实体类的命名也没有问题。

细心看报错信息,不难猜出报错原因大概率是多了个空格:

update_time = # {updateTime}

Google随便看了2篇,与我的情况明显不符。事实上,外国程序员很少使用MyBatis的。

#后面的空格去掉,本地调试,不再继续报错:Data truncation: Incorrect datetime value: '1' for column 'update_time' at row 1;

生产还未发布,但是基本上可以确定,生产环境的问题:SQLIntegrityConstraintViolationException: Column 'update_time' cannot be null已经得到解决。

反思

  1. 为什么本地和生产环境的报错信息不一样?
  2. MyBatis这种多一个空格就报错问题为啥不妨碍它成为中国公司普遍首选?事实上,表结构变更等,MyBatis也得频繁修改。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/142115.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!