概述
问题
在写mybatis的关联查询时,resultMap中如果两个对象有相同的属性。查询出来的结果内层的对象的属性会被外层对象属性覆盖,导致内层list数据出错。
resultMap结构如下:
<resultMap id="DetailResultMap" type="com.tchirk.itsm.ca.domain.System">
<result column="object_version_number" jdbcType="BIGINT" property="objectVersionNumber"/>
<result column="created_by" jdbcType="BIGINT" property="createdBy"/>
<result column="creation_date" jdbcType="TIMESTAMP" property="creationDate"/>
<collection property="moduleList" ofType="com.tchirk.itsm.ca.domain.Module">
<result column="object_version_number" jdbcType="BIGINT" property="objectVersionNumber"/>
<result column="created_by" jdbcType="BIGINT" property="createdBy"/>
<result column="creation_date" jdbcType="TIMESTAMP" property="creationDate"/>
</collection>
</resultMap>
查询关联对象的SELECT语句如下
<select id="selectSystem" resultMap="DetailResultMap" resultType="com.tchirk.itsm.ca.domain.System">
SELECT
s1.object_version_number,
s1.last_updated_by,
s1.last_update_date,
m1.object_version_number,
m1.last_updated_by,
m1.last_update_date
FROM itsm_system s1
left join itsm_module m1
on m1.system_id=s1.system_id
</select>
解决
将关联对象的相同属性名重命名,然后在resultMap中将column属性修改为查询语句中重命名的名字。
<select id="selectSystem" resultMap="DetailResultMap" resultType="com.tchirk.itsm.ca.domain.System">
SELECT
s1.object_version_number,
s1.last_updated_by,
s1.last_update_date,
m1.object_version_number m1_object_version_number,
m1.last_updated_by m1_last_updated_by,
m1.last_update_date m1_last_update_date
FROM itsm_system s1
left join itsm_module m1
on m1.system_id=s1.system_id
</select>
<resultMap id="DetailResultMap" type="com.tchirk.itsm.ca.domain.System">
<result column="object_version_number" jdbcType="BIGINT" property="objectVersionNumber"/>
<result column="created_by" jdbcType="BIGINT" property="createdBy"/>
<result column="creation_date" jdbcType="TIMESTAMP" property="creationDate"/>
<collection property="moduleList" ofType="com.tchirk.itsm.ca.domain.Module">
<result column="m1_object_version_number" jdbcType="BIGINT" property="objectVersionNumber"/>
<result column="m1_created_by" jdbcType="BIGINT" property="createdBy"/>
<result column="m1_creation_date" jdbcType="TIMESTAMP" property="creationDate"/>
</collection>
</resultMap>
最后
以上就是魁梧鱼为你收集整理的mybatis的resultMap中字段重名处理的全部内容,希望文章能够帮你解决mybatis的resultMap中字段重名处理所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复