MyBatis collection一对多映射String、Integer

MyBatis中collection的一对多映射配置解析
本文介绍了在MyBatis中如何进行一对多映射配置,包括实体类的设计,XML文件的编写,特别是如何使用javaType和ofType属性来指定集合属性类型。

实体类

@Data
public class DeptVO implements Serializable {
	private static final long serialVersionUID = -7763442841172048580L;
	
	private String code;
	private String name;
	/**
     * 一对多映射的字段
     */
	private List<Integer> tid;
}

xml文件

<resultMap id="vo" type="com.lgy.entity.DeptVO">
    <result property="code" column="dept_code"/>
    <result property="name" column="dept_name"/>
    <collection property="tid" ofType="java.lang.Integer"
                javaType="java.util.List">
        <result column="id"/>
    </collection>
</resultMap>

<select id="getCollection" resultMap="vo">
    select d.dept_code, d.dept_name, t.id
    from t_dept d
             LEFT JOIN t_test t
                       ON d.dept_code = t.username
</select>

备注

在Mybatis的collection标签中,javaType用来指定实体类属性类型,ofType用来指定实体类中集合属性中-属性的类型(以上实体类举例,ofType用来映射DeptVO 中 tid 集合属性中 的 int 属性类型)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值