Mybatis中collection和association的使用区别一

在hibernate 中用one to oneone to many,而mybatis 中就用associationcollection

1. 关联-association
2. 集合-collection

所以association是用于一对一和多对一,而collection是用于一对多的关系

下面就用一些例子解释下吧

1、association-一对一

人和身份证的关系

下面是pojo

1

2

3

4

5

public class Card implements Serializable{

private Integer id;

private String code;

//省略set和get方法.

}

 

1

2

3

4

5

6

7

8

9

public class Person implements Serializable{

private Integer id;

private String name;

private String sex;

private Integer age;

//人和身份证是一对一的关系

private Card card;

//省略set/get方法.

}

下面是mapper和实现的接口

1

2

3

4

5

6

7

package com.glj.mapper;

 

import com.glj.poji.Card;

 

public interface CardMapper {

Card selectCardById(Integer id);

}

 

1

2

3

4

5

6

7

8

9

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper

    PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.glj.mapper.CardMapper">

<select id="selectCardById" parameterType="int" resultType="com.glj.poji.Card">

select * from tb_card where id = #{id}

</select>

</mapper>

 

1

2

3

4

5

6

7

package com.glj.mapper;

 

import com.glj.poji.Person;

 

public interface PersonMapper {

Person selectPersonById(Integer id);

}

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper

    PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.glj.mapper.PersonMapper">

<resultMap type="com.glj.poji.Person" id="personMapper">

<id property="id" column="id"/>

<result property="name" column="name"/>

<result property="sex" column="sex"/>

<result property="age" column="age"/>

<association property="card" column="card_id"

select="com.glj.mapper.CardMapper.selectCardById"

javaType="com.glj.poji.Card">

</association>

</resultMap>

<select id="selectPersonById" parameterType="int" resultMap="personMapper">

select * from tb_person where id = #{id}

</select>

</mapper>

<association property="card" column="card_id"  select="com.glj.mapper.CardMapper.selectCardById"

javaType="com.glj.poji.Card">

 

 

 

PersonMapper.xml 还使用association的分步查询。

同理多对一,也是一样

只要那个pojo出现private Card card_one;

即使用association


collection 一对多和association的多对一关系

学生和班级的一对多的例子

pojo类

1

2

3

4

5

6

7

8

9

10

11

12

13

package com.glj.pojo;

 

import java.io.Serializable;

import java.util.List;

 

public class Clazz implements Serializable{

private Integer id;

private String code;

private String name;

        //班级与学生是一对多的关系

private List<Student> students;

//省略set/get方法

}

 

1

2

3

4

5

6

7

8

9

10

11

12

13

package com.glj.pojo;

 

import java.io.Serializable;

 

public class Student implements Serializable {

private Integer id;

private String name;

private String sex;

private Integer age;

        //学生与班级是多对一的关系

private Clazz clazz;

//省略set/get方法

}

 

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper

    PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.glj.mapper.ClazzMapper">

<select id="selectClazzById" parameterType="int" resultMap="clazzResultMap">

select * from tb_clazz where id = #{id}

</select>

<resultMap type="com.glj.pojo.Clazz" id="clazzResultMap">

<id property="id" column="id"/>

<result property="code" column="code"/>

<result property="name" column="name"/>

<!-- property: 指的是集合属性的值, ofType:指的是集合中元素的类型 -->

<collection property="students" ofType="com.glj.pojo.Student"

column="id" javaType="ArrayList"

fetchType="lazy" select="com.glj.mapper.StudentMapper.selectStudentByClazzId">

<id property="id" column="id"/>

<result property="name" column="name"/>

<result property="sex" column="sex"/>

<result property="age" column="age"/>

</collection>

</resultMap>

</mapper>

 

1

2

3

4

5

6

7

package com.glj.mapper;

 

import com.glj.pojo.Clazz;

 

public interface ClazzMapper {

Clazz selectClazzById(Integer id);

}

ClazzMapper使用到了集合-collection 即为一对多,一个班级面对多个学生

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE mapper

    PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.glj.mapper.StudentMapper">

<select id="selectStudentById" parameterType="int" resultMap="studentResultMap">

select * from tb_clazz c,tb_student s where c.id = s.id and s.id = #{id}

</select>

<select id="selectStudentByClazzId" parameterType="int" resultMap="studentResultMap">

select * from tb_student where clazz_id = #{id}

</select>

<resultMap type="com.glj.pojo.Student" id="studentResultMap">

<id property="id" column="id"/>

<result property="name" column="name"/>

<result property="sex" column="sex"/>

<result property="age" column="age"/>

<association property="clazz" javaType="com.glj.pojo.Clazz">

<id property="id" column="id"/>

<result property="code" column="code"/>

<result property="name" column="name"/>

</association>

</resultMap>

</mapper>

 

1

2

3

4

5

6

7

package com.glj.mapper;

 

import com.glj.pojo.Student;

 

public interface StudentMapper {

Student selectStudentById(Integer id);

}

StudentMapper则是与班级为多对一关系,所以使用了关联-association


嗯,希望我以后又不记得二者的关系时,能感谢现在总结的自己

 

附上一张mybatis的类型别名图

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值