1. 程式人生 > 其它 >Mybatis-plus:bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErro

Mybatis-plus:bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErro

技術標籤:mysql資料庫

記錄一個報錯資訊:
在使用Mybatis-plus時,測試查詢單個數據時一直報錯

bad SQL grammar []; nested exception is 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 'desc,state,
created,updated FROM tb_admin_role WHERE id = 1' at line 1
org.springframework.jdbc.BadSqlGrammarException: 
### Error querying 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 'desc,state,created,updated FROM tb_admin_role WHERE id = 1' at line 1 ### The error may exist in com/tanhua/manage/mapper/AdminRoleMapper.java (best guess) ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT id,
name,desc,state,created,updated FROM tb_admin_role WHERE id = ? ### 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 'desc,state,created,updated FROM tb_admin_role WHERE id = 1' at line 1 ; bad SQL grammar []; nested exception is 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 'desc,state,created,updated FROM tb_admin_role WHERE id = 1' at line 1

測試類

@Test
    public void test(){
        AdminRole adminRole = adminRoleMapper.selectOne(Wrappers.<AdminRole>lambdaQuery().eq(AdminRole::getId, 1));
        System.out.println("adminRole = " + adminRole);
    }

pojo

@Data
@AllArgsConstructor
@NoArgsConstructor
public class AdminRole extends BasePojo {

    private Long id;
    private String name;
    private String desc;//角色的描述
    private Boolean state;// 角色的狀態,1啟用,2停用

}

MySQL欄位
在這裡插入圖片描述

後來查詢到是資料庫欄位名稱有關鍵字,desc。導致無法對映到pojo封裝回去,更改desc欄位後恢復。