Mybatis-resultMap

resultMap 元素是 MyBatis 中最重要最强大的元素。
ResultMap 的设计思想是,对简单的语句根本不需要配置显示的结果映射,对于复杂一点的语句,只需要描述语句之间的关系就行了。

解决属性名和字段名不一致的问题(resultMap)

数据库中的字段
Mybatis-resultMap
新建一个项目,拷贝之前的,测试实体类字段不一致的情况

public class User {
    private int id;
    private String name;
    private String password;
}

测试出现问题!

select * from test where id = #{id}
<!--类型处理器-->
<!--SQL完整语句应该是:select id,name,pwd from test where id = #{id}-->

解决方法:

  • 方法一:sql语句起别名
select id,name,pwd as password from test where id = #{id}
  • 方法二:resultMap(结果集映射)
    其实这些简单的sql根本不需要使用resultMap。
    <!--结果集映射-->
    <resultMap id="UserMap" type="User">
        <!--column数据库中的字段,property实体类中的属性-->
        <result column="id" property="id" />
        <result column="name" property="name" />
        <result column="pwd" property="password" />
    </resultMap>
    <!--resultMap="随便起名字"上面的UserMap-->
    <select id="getUserById" parameterType="int" resultMap="UserMap">
        select * from test where id = #{id}
<!--类型处理器-->
<!--SQL完整语句应该是:select id,name,pwd from test where id = #{id}-->
    </select>

如果世界这么简单就好了
Mybatis-resultMap

上一篇:The content of element type "resultMap"


下一篇:MyBatis 源码解析