我是靠谱客的博主 传统保温杯,最近开发中收集的这篇文章主要介绍MyBatis关联查询,表字段相同,resultMap映射问题的解决办法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题描述:在使用mybatis进行多表联合查询时,如果两张表中的字段名称形同,会出现无法正常映射的问题。

问题解决办法:在查询时,给重复的字段 起别名,然后在resultMap中使用别名进行映射。

给出一个小demo:如下是一个**mapper.xml映射文件的一个查询片段,用到了四表联合查询,其中订单id,项目id,回报id,是需要查询的数据,并且字段名都是id,显然是重复字段,此时就需要为这些重复的id起别名了,请看下面的红色部分代码:

<resultMap type="com.lz.pojo.MyOrder" id="myOrder">
		<result column="name" property="name" />
		<result column="type" property="type" />
		<result column="money" property="money" />
		<result column="content" property="content" />
		<result column="state" property="state" />
		<result column="pic" property="pic" />
		<result column="pid" property="pid" />
		<result column="hid" property="hid" />
		<result column="oid" property="oid" />
	</resultMap>
	<!-- findMyOrderByUserId:根据用户id,查询我的订单 -->
	<select id="findMyOrderByUserId" parameterType="int" resultMap="myOrder">
		SELECT p.name,p.type,o.money,h.content,o.state,h.pic,p.id pid,h.id hid,o.id oid
			FROM project p,huibao h,`order` o,`user` u
			WHERE o.projectId=p.id AND o.userId=u.id and o.hbId=h.id AND u.id=#{userId} 
	</select>

 

这样处理后,查询时就可以成功的完成,实体类与查询字段的映射了。


最后

以上就是传统保温杯为你收集整理的MyBatis关联查询,表字段相同,resultMap映射问题的解决办法的全部内容,希望文章能够帮你解决MyBatis关联查询,表字段相同,resultMap映射问题的解决办法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部