ResultMap
要解决的问题,属性名和字段名不一致
1、查询为null的问题
-
查看之前数据库的字段名
-
Java中的实体类设计
public class User { private int id; //id private String name; //姓名 private String password; //密码和数据库不一样! //构造 //set/get //toString() }
-
接口
//根据id查询用户 User selectUserById(int id);
-
mapper映射文件
<select id="selectUserById" resultType="user"> select * from user where id = #{id} </select>
-
测试
@Test public void testSelectUserById() { SqlSession session = MybatisUtils.getSession(); //获取SqlSession连接 UserMapper mapper = session.getMapper(UserMapper.class); User user = mapper.selectUserById(1); System.out.println(user); session.close(); }
结果:
- User{id=1,name=‘臧臧’,password=‘null’}
- 查询出来发现 password 为空 . 说明出现了问题
分析:
- select * from user where id = #{id} 可以看做 select id,name,pwd from user where id = #{id}
- mybatis会根据这些查询的列名(会将列名转化为小写,数据库不区分大小写) , 去对应的实体类中查找 相应列名的set方法设值 , 由于找不到setPwd() , 所以password返回null ; 【自动映射】
2、解决方案
方案一:为列明指定别名,别名和java实体类的属性名一致
<select id="selectUserById" resultType="User">
select id , name , pwd as password from user where id = #{id}
</select>
方案二:使用结果集映射->ResultMap
<resultMap id="UserMap" type="User">
<!-- id为主键 -->
<id column="id" property="id"/>
<!-- column是数据库表的列名 , property是对应实体类的属性名 -->
<result column="name" property="name"/>
<result column="pwd" property="password"/>
</resultMap>
<select id="selectUserById" resultMap="UserMap">
select id , name , pwd from user where id = #{id}
</select>
3、ResultMap
- 自动映射
- resultMap元素时MyBatis中最重要最强大的元素。它可以让你从 90% 的 JDBC ResultSets 数据提取代码中解放出来。
- 实际上,在为一些比如连接的复杂语句编写映射代码的时候,一份 resultMap 能够代替实现同 等功能的长达数千行的代码。
- ResultMap 的设计思想是,对于简单的语句根本不需要配置显式的结果映射,而对于复杂一点的语 句只需要描述它们的关系就行了。
<select id="selectUserById" resultType="User">
select id , name , pwd as password from user where id = #{id}
</select>
上述语句只是简单的将所有上述语句只是简单地将所有的列映射到 HashMap 的键上,这由 resultType 属性指定。虽然在 大部分情况下都够用,但是 HashMap 不是一个很好的模型。你的程序更可能会使用 JavaBean 或 POJO(Plain Old Java Objects,普通老式 Java 对象)作为模型。
ResultMap 优秀的地方在于,虽然你已经对它相当了解了,但是根本就不需要显式地用到他们
2. 手动映射
- 返回值类型为resultMap
<select id="selectUserById" resultMap="UserMap">
select id , name , pwd from user where id = #{id}
</select>
- 编写resultMap,实现手动映射!
<resultMap id="UserMap" type="User">
<!-- id为主键 -->
<id column="id" property="id"/>
<!-- column是数据库表的列名 , property是对应实体类的属性名 -->
<result column="name" property="name"/>
<result column="pwd" property="password"/>
</resultMap>
由于数据库存在多对一一对多的情况,所以后面还会有一些高级结果集映射,association,collection