resultType使用方法
使用resultType进行输出映射,只有查询出来的列名和pojo(实体bean)中的属性名一致,该列才可以映射成功。
resultMap使用方法
如果查询出来的列名和pojo的属性名不一致,通过定义一个resultMap对列名和pojo属性名之间作一个映射关系。
<resultMap type="user" id="userResultMap">
<id column="_id" property="id"/>
<result column="_username" property="username"/>
</resultMap>
<select id="findUserByResultMap" parameterType="int" resultMap="userResultMap">
select id _id,username _username from user where id=#{value}
</select>
使用resultType进行输出映射,只有查询出来的列名和pojo中的属性名一致,该列才可以映射成功。
如果查询出来的列名和pojo的属性名不一致,通过定义一个resultMap对列名和pojo属性名之间作一个映射关系。
网友评论