前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >mybatis文件映射之利用collection定义关联集合(五)

mybatis文件映射之利用collection定义关联集合(五)

作者头像
西西嘛呦
发布2020-08-26 11:22:39
4800
发布2020-08-26 11:22:39
举报

Employee.java

代码语言:javascript
复制
public class Employee {
    private Integer id;
    private String lastName;
    private String gender;
    private String email;
    Department dept;
}

Department.java

代码语言:javascript
复制
public class Department {
    private Integer id;
    private String deptName;
    private List<Employee> employee;
}

DepartmentMapper.java

代码语言:javascript
复制
public interface DepartmentMapper {
    public Department getDeptByIdWithAllEmployees(Integer id);
}

DepartmentMapper.xml

代码语言:javascript
复制
<?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.gong.mybatis.dao.DepartmentMapper">
    
    <resultMap type="com.gong.mybatis.bean.Department" id="MyDept">
        <id column="did" property="id"/>
        <result column="dept_name" property="deptName"/>
        <collection property="employee" ofType="com.gong.mybatis.bean.Employee">
            <id column="eid" property="id"/>
            <result column="last_name" property="lastName"/>
            <result column="gender" property="gender"/>
            <result column="email" property="email"/>
        </collection>
    </resultMap>
    <select id="getDeptByIdWithAllEmployees" resultMap="MyDept">
        SELECT d.id did,d.dept_name,e.id eid,e.last_name,e.gender,e.email 
        from tbl_department d 
        LEFT JOIN tbl_employee e 
        on d.id = e.d_id 
        WHERE d.id = #{id}
    </select>
</mapper>

说明:这实际上是多对一查询,即一个部门里面有多个员工。collection标签中property属性标识Department类中的成员属性,ofType标识其类型。

对该功能进行测试:

代码语言:javascript
复制
package com.gong.mybatis.test;

import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import java.util.Map;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Test;

import com.gong.mybatis.bean.Department;
import com.gong.mybatis.bean.Employee;
import com.gong.mybatis.dao.DepartmentMapper;
import com.gong.mybatis.dao.EmployeeMapperPlus;

public class TestMybatis2 {
    
    public SqlSessionFactory getSqlSessionFactory() throws IOException {
        String resource = "mybatis-config.xml";
        InputStream is = Resources.getResourceAsStream(resource);
        return new SqlSessionFactoryBuilder().build(is);
    }
    
    @Test
    public void test2() throws IOException {
        SqlSessionFactory sqlSessionFactory = getSqlSessionFactory();
        SqlSession openSession = sqlSessionFactory.openSession();
        try {
            DepartmentMapper mapper = openSession.getMapper(DepartmentMapper.class);
            Department department = mapper.getDepthByIdWithAllEmployees(1);
            System.out.println(department);
            System.out.println(department.getEmployee());
            openSession.commit();
        } finally {
            openSession.close();
        }
        
    }

}

输出:

DEBUG 01-20 19:13:24,335 ==> Preparing: SELECT d.id did,d.dept_name,e.id eid,e.last_name,e.gender,e.email from tbl_department d LEFT JOIN tbl_employee e on d.id = e.d_id WHERE d.id = ? (BaseJdbcLogger.java:145) DEBUG 01-20 19:13:24,389 ==> Parameters: 1(Integer) (BaseJdbcLogger.java:145) DEBUG 01-20 19:13:24,426 <== Total: 2 (BaseJdbcLogger.java:145) Department [id=1, deptName=开发部] [Employee [id=1, lastName=xiximayou, gender=1, email=xiximayou@qq.com, dept=null], Employee [id=3, lastName=小红, gender=0, email=xiaohong@qq.com, dept=null]]

可以看到对于一个部门,取得了里面的雇员,表明该功能是成功的。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-01-20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
日志服务
日志服务(Cloud Log Service,CLS)是腾讯云提供的一站式日志服务平台,提供了从日志采集、日志存储到日志检索,图表分析、监控告警、日志投递等多项服务,协助用户通过日志来解决业务运维、服务监控、日志审计等场景问题。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档