今天工作,第一次使用mybatits-plus ,一顿操作,连接数据库,给我报了个异常
org.springframework.security.authentication.InternalAuthenticationServiceException:
### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'id' in 'field list'
### The error may exist in com/niezhiliang/security/demo/mapper/UserMapper.java (best guess)
### The error may involve defaultParameterMap
### The error occurred while setting parameters
### SQL: SELECT id AS id,account,password,isEnable,createAt FROM user WHERE account = ?
- 下面是数据库表接口
明明是有id这个字段,我还以为是mybatits-plus里面的问题,于是去navicat上面查询,也给我报了这个错误。
我瞬间懵逼啦,这字段明明有的啊。
仔细检查后,发现是再添加id这个字段的时候不小心在id前面加了个空格
。
所以还是得细心一点 。去掉id前面的字段就查询到了。