报错相关信息:

org.springframework.jdbc.BadSqlGrammarException: 
### Error updating database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'condition,
createTime,
startTime )  VALUES  ( null,
1011,
'Trace Task',
1,
0,
0,' at line 10
......

很久没写sql了,一直是用mybatis-plus,最近写用例发现报错,刚看到这个报错以为是语法写的有问题,但是仔细排查了日志里生成的sql没有发现任何问题,再详细看了报错是 near condition,说明是condition附近存在问题,猛然惊醒condition是不是数据库关键字啊,查了下果然是的,以前也吃过这个亏,DESC也是数据库关键字,以前也踩过坑用来当列名。解决方法也简单,直接改字段名不要用关键字,你要是不想改也可以在字段上加上注解,例如

    @TableField(value = "`CONDITION`")
    private String condition;

一定要加反引号,就是左上角ESC下面那个按键。
最后附上数据库关键字大全,下次字段起名一定要注意。
https://www.zhiu.cn/65847.html

更多推荐