MyBatis 查询结果部分字段出现null值
分析原因: 数据库的字段单词以下划线分隔,Java的属性以驼峰命名,如果数据库中的字段和java中的字段刚好一样,比如数据库是id,name,java里也是id,name,就可以自动映射,如果数据库中是user_name,java中是userName,那就不能自动映射。
解决方案有两个:
- 使用
resultMap="BaseResultMap"
,不使用resultType="com.learn.mybatis.po.User"
<resultMap id="BaseResultMap" type="com.learn.mybatis.do.User">
<result column="ID" property="id" jdbcType="BIGINT"/>
<result column="USER_NAME" property="userName" jdbcType="VARCHAR"/>
<result column="USER_AGE" property="userAge" jdbcType="INTEGER"/>
<result column="USER_SEX" property="userSex" jdbcType="VARCHAR"/>
</resultMap>
<select id="queryUserInfo" resultMap="BaseResultMap">
select * from t_user_info
</select>
- 在mybatis配置文件里,配置下划线转换为驼峰命名风格(默认是false)。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" " http://mybatis.org/dtd/mybatis-3-config.dtd ">
<configuration>
<!-- mybatis开启字段自动映射为java驼峰命名规则 -->
<settings>
<setting name="mapUnderscoreToCamelCase" value="true"/>
</settings>
</configuration>
注意: 在pom.xml配置mybatis时,版本不能太低,否则不支持驼峰命名的转换