mybatis的映射会根据id自动去重

原<resultmap>

<!-- dynamicTagTarget -->
<resultMap id="dynamicTagTarget1" type="adScheduleSwDesktopShowPaginationVo" autoMapping="true">
    <id column="aid" property="aid" jdbcType="BIGINT" />
    <association column="aid" property="strategy" resultMap="com.xxxx.xxxx.xxxx.definedMapper.strategyMap"/>
</resultMap>

会造成直接使用sql查询得出多条记录,但是映射出来只有1条记录,原因是因为id=aid 默认成主键,根据主线自动进行去重,所以对于1对多会造成数据缺失,因此再加一个决定id就行。

 

改<resultmap>

<!-- dynamicTagTarget -->
<resultMap id="dynamicTagTarget1" type="adScheduleSwDesktopShowPaginationVo" autoMapping="true">
    <id column="aid" property="aid" jdbcType="BIGINT" />
    <id column="day" property="day" jdbcType="DATE" />
    <association column="aid" property="strategy" resultMap="com.xxxx.xxxx.xxxx.definedMapper.strategyMap"/>
</resultMap>

加入day这个id后,mybatis会根据aid和day进行去重,数据就不会缺失了。

 

 

另:映射需要将所有用到该字段的resultmap都写明,不然会造成对应字段的数据没映射出来。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值