resultmap的用法

MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的,而resultMap则是对外部ResultMap的引用,但是resultType跟resultMap不能同时存在。在MyBatis进行查询映射的时候,其实查询出来的每一个属性都是放在一个对应的Map里面的,其中键是属性名,值则是其对应的值。当提供的返回类型属性是resultType的时候,MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性。所以其实MyBatis的每一个查询映射的返回类型都是ResultMap,只是当我们提供的返回类型属性是resultType的时候,MyBatis对自动的给我们把对应的值赋给resultType所指定对象的属性,而当我们提供的返回类型是resultMap的时候,因为Map不能很好表示领域模型,我们就需要自己再进一步的把它转化为对应的对象,这常常在复杂查询中很有作用。
数据库中定义的表的属性名称如图所示:
在这里插入图片描述
java类中定义的名字如图所示:
在这里插入图片描述
可以看到他们不一样,需要有一个映射关系。这样避免过多的对代码进行修改。
需要在Mapper.xml中对数据进行映射,就可以用到resultmap,如图所示:

 -->
	<resultMap id="userMap" type="com.itheima.domain.User">

		<id property="userId" column="id"></id>
		<result property="userName" column="username"></result>
		<result property="userAddress" column="address"></result>
		<result property="userSex" column="sex"></result>
		<result property="userBirthday" column="birthday"></result>

	</resultMap>

那bean中的resultType就需要替换成resultMap,如图所示:

<select id="findAll" resultMap="userMap">
		select * from user

	</select>
		<insert id="saveUser" parameterType="com.itheima.domain.User">insert into USER (username,address,sex,birthday) values (#{username},#{address},#{sex},#{birthday});

</insert>
	<update id="updateUser" parameterType="com.itheima.domain.User">

		UPDATE user set username=#{username},address=#{address},sex=#{sex} where id=#{id}
	</update>
	<delete id="deleteUser" parameterType="java.lang.Integer">

		delete from user where id=#{id}
	</delete>

	<select id="findUserById" resultMap="userMap">
		select * from user where id=#{id}
	</select>

	<select id="findUserByName" resultMap="userMap">
		select * from user where username like #{username}
	</select>
  • 6
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值