mybatis-plus查询时不能映射字段
Posted 程序员超时空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis-plus查询时不能映射字段相关的知识,希望对你有一定的参考价值。
mybatis-plus查询时不能映射字段
mybatis-plus查询时不能映射字段
新建项目配置好启动正常,但是测试时发现mybatis-plus查询中,未能将实体字段名映射为表中的列表。
错误信息:
Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘userName’ in ‘field list’
The error may exist in cn/yc/sys/mapper/UserMapper.java (best guess)
The error may involve defaultParameterMap
The error occurred while setting parameters
SQL: SELECT id,userName,password,userTel,address FROM d_user WHERE (user_name = )
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘userName’ in ‘field list’
; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘userName’ in ‘field list’] with root cause
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column ‘userName’ in ‘field list’
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_181]
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:1.8.0_181]
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:1.8.0_181]
排查
查看配置信息,mapper的配置位置正常:
程序启动时,console信息中也能看到:
mapper.xml文件是自动生成的,内容完全没改动:
奇怪的情况,折磨半天。
原因
浪费半天时间,最后发现配置文件中有一处不正常的情况:
map-underscore-to-camel-case,是否开启驼峰转换功能。
罪魁祸首就在此处,此项设为了true时,才会开启驼峰自动转换功能,mybatis在拼sql时才会将实体类的字段名,转为对应的表列名。
PS:
map-underscore-to-camel-case,为true时,如果不使用一些自定义的sql,只使用mybatis预设的方法与数据库交互,则mapper.xml文件可以删除,毫无影响。
以上是关于mybatis-plus查询时不能映射字段的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot + mybatis-plus 遇到 数据库字段 创建不规范 大驼峰 下划线 导致前端传参数 后端收不到参数 解决方案