Mybatis中collection和association的使用区别
本文最后更新于 2648 天前,其中的信息可能已经有所发展或是发生改变。

最近一直把collection和association弄混,所以为了增强自己的记忆,就撸一个关系出来算是总结罢了


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

比如同时有User.java和Card.java两个类

User.java如下:

public class User{

private Card card_one;

private List<Card> card_many;

}

在映射card_one属性时用association标签, 映射card_many时用collection标签.

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

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

association-一对一

人和身份证的关系

下面是pojo

public class Card implements Serializable{
	private Integer id;
	private String code;
//省略set和get方法.
}
public class Person implements Serializable{
	private Integer id;
	private String name;
	private String sex;
	private Integer age;
	//人和身份证是一对一的关系
	private Card card;
//省略set/get方法.
}

下面是mapper和实现的接口

package com.glj.mapper;

import com.glj.poji.Card;

public interface CardMapper {
	Card selectCardById(Integer id);
}
<?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>
package com.glj.mapper;

import com.glj.poji.Person;

public interface PersonMapper {
	Person selectPersonById(Integer id);
}
<?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>

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

同理多对一,也是一样

只要那个pojo出现private Card card_one;

即使用association


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

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

pojo类

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方法
}
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方法
}
<?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>
package com.glj.mapper;

import com.glj.pojo.Clazz;

public interface ClazzMapper {
	Clazz selectClazzById(Integer id);
}

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

<?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>
package com.glj.mapper;

import com.glj.pojo.Student;

public interface StudentMapper {
	Student selectStudentById(Integer id); 
}

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


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

附上一张mybatis的类型别名图

评论

  1. QQ
    Windows Chrome 34.0.1847.116
    7 年前
    2018-1-23 15:15:38

    不错不错

  2. 123
    Windows Chrome 64.0.3282.140
    7 年前
    2018-5-12 17:03:19

    快来射我啊

  3. zx
    Windows Edge 17.17134
    6 年前
    2018-7-30 13:51:37

    来了诶老板

  4. mao
    Windows Chrome 63.0.3239.132
    6 年前
    2018-10-11 16:02:06

    你真快

  5. Windows Chrome 67.0.3396.62
    6 年前
    2018-11-19 18:03:01

    快来射我啊

  6. 暮成
    Windows Chrome 71.0.3578.98
    6 年前
    2019-1-16 23:49:54

    讲的挺好的!一开始自己照书看的话还是有点疑惑,看完说明都明了了。虽然无伤大雅不过还是想说,班级是class

    • 暮成
      Windows Chrome 71.0.3578.98
      6 年前
      2019-2-27 9:28:56

      class定义属性时是关键字,所以一般class属性取名为clazz。 射给你了。

      • 博主
        射死你
        Windows Chrome 69.0.3497.100
        6 年前
        2019-2-27 9:33:32

        域名好评

      • qiutian
        射死你
        Windows Chrome 69.0.3497.100
        5 年前
        2019-11-09 14:37:40

        class是关键字,Class可不是哦

    • 腾讯员工
      暮成
      Windows Chrome 71.0.3578.98
      6 年前
      2019-5-02 16:00:44

      好型clazz确实么得问题

    • 名字过于猥琐已编辑
      暮成
      Windows Chrome 77.0.3865.120
      5 年前
      2019-10-22 10:13:22

      class关键字

    • 名字过于猥琐已编辑
      暮成
      Windows Chrome 77.0.3865.120
      5 年前
      2019-10-22 10:13:38

      class关键字懂吗

      • 博主
        名字过于猥琐已编辑
        Windows Chrome 69.0.3497.100
        5 年前
        2019-10-22 10:16:53

        亲~名字过于猥琐已编辑了喔

  7. Windows Opera 12.14
    5 年前
    2019-11-28 16:22:12

    卧槽

  8. 吴彦祖
    Windows Chrome 93.0.4577.63
    3 年前
    2021-9-24 9:27:53

    转载一下可以吗?

    • 博主
      吴彦祖
      Windows Edge 94.0.992.31
      3 年前
      2021-9-26 11:48:14

      ok的~

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇