今天在建一个数据表之后,在springboot中使用了mybatisplus代码生成工具生成了java相关代码,在查询的时候,使用的是list()方法查询,发现居然会报错,找了好久。
org.springframework.jdbc.BadSqlGrammarException:
### Error querying database. Cause: java.sql.SQLSyntaxErrorException: 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 'order,to_path,status,is_del FROM homepage_carousel_images' at line 1
### The error may exist in com/zhanghao/dao/HomepageCarouselImagesDao.java (best guess)
### The error may involve defaultParameterMap
### The error occurred while setting parameters
发现居然是数据库字段名称使用了mysql中的关键字导致的,mybatisplus查询时没有给字段加上``符号,所以就会报错.
打印SQL语句,把SQL语句放到其他辅助编辑器上就发现了问题,原来是这个order字段名称
解决:该数据库字段名称就可以了,不要使用关键字作为字段名称