一对多&一对多对多操作:
ResultType和ResultMap的区别:
ResultType相对与ResultMap而言更简单一点。只有满足ORM(Object Relational Mapping,对象关系映射)时,即数据库表中的字段名和实体类中的属性完全一致时,(即一模一样)才能使用,否则会出现数据不显示的情况。
比方说由于实体类属性是doorId和表的字段是door_id这样也是不一致的,导致数据不显示。
ResultMap和ResultType的功能类似,但是ResultMap更强大一点,ResultMap可以实现将查询结果映射为复杂类型的pojo。就可以解决ResultType遗留的问题。(用这个就行)
注意:一对多&一对多对多:所以关系在一方;
步骤:
1、'查找每个部门的下面的所有员工
2、'查找每个部门的下面的所有员工和该部门属于那个子公司
1、设计三个类:
(1)员工类(Employee):
@Data
public class Employee {
private Long id;
private String name;
private Long pid;
}
(2)部门类(Department)
@Data
public class Department {
private Long id;
private String name;
private List<Employee> employees;
//'因为每个部门的下面的有多个员工和该部门可能属于多个子公司
private List<Firm> firms; //所以将员工和公司封装成list集合对象
}
(3)公司类 (Firm):
@Data
public class Firm {
private Long id;
private String name;
private String fid;
}
(4)编写service层mapper层
一对多操作:
查找每个部门的下面的所有员工:
第一种:(内联映射–》(不推荐))
<?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="cn.js.Mapper.DepartmentMapper">
<resultMap id="DepartmentMapper" type="cn.js.domain.Department">
<id column="id" property="id" />
<result column="name" property="name"/>
<collection property="employees" ofType="cn.js.domain.Employee" columnPrefix="e">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="pid" property="pid"/>
</collection>
</resultMap>
<select id="getOneortwo" resultMap="DepartmentMapper">
SELECT d.name ,d.id ,e.id eid ,e.name ename, e.pid epid
FROM department d JOIN employee e on
d.id=e.pid
</select>
</mapper>
注意:
1、因为三个类中都包含相同的字段,所以对于字段查找时一定要'起别名'
2、对于collection:用于定义一对多的关联关系
3、对于association:用于多对一或者一对一的关联关系
4、columnPrefix=" " 省去以什么开头:columnPrefix="e" 就是省去以'e'而开头 ename=name
第二种:(额外SQL):
就是分别在两个xml 文件中写SQL语句,之后再将两个xml文件关联起来。
第一步在员工mapp.xml文件中:写查询员工的查询语句:
<select id="all" resultType="cn.js.domain.Employee">
SELECT e.id,e.name ,e.pid
FROM employee e where e.pid=#{id} //id-->是部门id作为参数,也就是条件
</select>
第二步在部门mapp.xml文件中:编写写查询语句:
<?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="cn.js.Mapper.DepartmentMapper">
<!--+++++++++++++++++++额外SQl+++++++++++++++++-->
<resultMap id="Department" type="cn.js.domain.Department">
<id column="id" property="id"/>
<result column="name" property="name"/>
<collection select="cn.js.Mapper.EmployeeMapper.all"
column="id" property="employees"/>
</resultMap>
<select id="getOneortwoll" resultMap="Department">
SELECT d.name ,d.id
FROM department d
</select>
</mapper>
注意:
1、association: 针对的关联属性配置,非集合类型 :
(1)关联的是集合类型:collection 来配置
(2)若关联的是非集合类型:association 来配置。
2、select: 发送什么额外SQL
3、column: 发送额外 SQL 参数取上一条 SQL 哪个列的值
4、property: 封装员工对象的什么属性
5、ofType:用于一对多,一对多对多
6、javaType: 用于多对一
一对多对多操作:
2、'查找每个部门的下面的所有员工和该部门属于那个子公司
<?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="cn.js.Mapper.DepartmentMapper">
<!--一对多 对多-->
<resultMap id="DepartmentMappers" type="cn.js.domain.Department">
<id column="id" property="id"/>
<result column="name" property="name"/>
<collection property="employees" ofType="cn.js.domain.Employee" columnPrefix="e">
<id column="id" property="id"/>
<result column="name" property="name"/>
</collection>
<collection property="firms" ofType="cn.js.domain.Firm" columnPrefix="f">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="fid" property="fid"/>
</collection>
</resultMap>
<select id="getTwoortwoll" resultMap="DepartmentMappers">
SELECT d.name,d.id, e.name ename,e.id eid,e.pid epid,f.id fid,f.name fname,f.fid ffid
FROM
department d join
employee e ON d.id=e.pid
JOIN firm f ON d.id=f.fid
</select>
</mapper>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/188594.html