• 一对一关系实现部门和员工的查询


    resutlType和resultMap的使用(参考文档)

    在这里插入图片描述

    实现部门和员工的查询: (参考代码)

    EmpMapper.xml:

    
    
    
    
    
        
            
            
            
            
            
            
            
            
                
                
                
            
        
    
        
        
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    一对一关系实现部门和员工的查询:

    效果图展示:

    创建数据库/表:

    在这里插入图片描述

    在这里插入图片描述

    代码运行结果:

    在这里插入图片描述

    项目实现思路(参考):

    在这里插入图片描述

    代码整体布局:

    在这里插入图片描述
    注意:

    在这里插入图片描述

    代码:

    创建数据库/表:

    #创建部门表
    create table t_dept 
    ( 
    	dept_id int primary key auto_increment comment '部门编号', 
    	dept_name varchar(20) comment '部门名字', 
    	description varchar(200) comment '描述' 
    );
    
    select * from t_dept;
    
    insert into t_dept
    (dept_name,description)
    select '财务部','管钱的' union
    select '后勤部','搞物业' union
    select 'IT部门','编程序';
    
    
    #创建员工表
    create table t_emp 
    ( 
    	emp_id int primary key auto_increment comment '员工编号', 
    	emp_name varchar(20) comment '员工姓名', 
    	sex char(1) comment '性别', 
    	phone varchar(11) comment '手机号', 
    -- 	hireDate date comment '入职日期', 
    -- 	leaveDate date comment '离职日期', 
    -- 	address varchar(200) comment '家庭住址', 
    -- 	username varchar(20) comment '员工账号', 
    -- 	password varchar(20) comment '员工密码', 
    	dept_id int comment '所属部门' 
    );
    
    select * from t_emp;
    
    insert into t_emp
    (emp_name,sex,phone,dept_id)
    select '张三','女','1234567890',1 union
    select '李四','男','1234567891',1 union
    select '王五','女','1234567892',2 union
    select '赵六','男','1234567893',3 ;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40

    pom.xml:

    
    
        4.0.0
    
        org.example
        mybatis_0815_KTLX
        1.0-SNAPSHOT
    
        
            8
            8
        
    
        
        
            
            
                org.mybatis
                mybatis
                3.4.6
            
    
            
            
                mysql
                mysql-connector-java
                8.0.11
            
            
            
                org.projectlombok
                lombok
                1.18.22
            
            
            
                junit
                junit
                4.13
                compile
            
        
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46

    db.properties:

    jdbc.driver=com.mysql.cj.jdbc.Driver
    jdbc.url=jdbc:mysql://localhost:3306/70813_db?useSSL=false&serverTimezone=Asia/Shanghai&characterEncoding=utf8&allowPublicKeyRetrieval=true
    jdbc.username=root
    jdbc.password=123456
    
    • 1
    • 2
    • 3
    • 4

    mybatis_config.xml:

    
    
    
        
        
            
            
        
        
            
        
    
        
            
                
                
                    
                    
                    
                    
                
            
        
        
            
            
            
    
        
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33

    参考官网:mybatis映射器mappers
    https://mybatis.org/mybatis-3/zh/configuration.html#mappers
    在这里插入图片描述

    Dept:

    package com.yzh7.entity;
    
    import lombok.Data;
    
    import java.util.List;
    
    @Data
    public class Dept {
        private Integer deptId;
        private String deptName;
        private String description;
    
        //一个部门拥有多个员工
        private List empList;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    Emp:

    package com.yzh7.entity;
    
    import lombok.Data;
    
    @Data
    public class Emp {
        private Integer empId;
        private String empName;
        private String sex;
        private String phone;
        private Integer deptId;
    
        //一个员工属于一个部门
        private Dept dept;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    DeptMapper:

    package com.yzh7.mapper;
    
    import com.yzh7.entity.Dept;
    
    import java.util.List;
    
    public interface DeptMapper {
        //查询部门,一个部门关联多个员工
        List listAll();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    EmpMapper:

    package com.yzh7.mapper;
    
    import com.yzh7.entity.Emp;
    
    import java.util.List;
    
    public interface EmpMapper {
        //查询所有员工,并且每个员工关联一个部门对象
        List listAll();
    
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    EmpMapper.xml:

    
    
    
    
    
    
        
    
    
            
            
    
            
            
            
            
            
    
    
            
            
    
                
                
                
            
        
        
            
        
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    或者:

    EmpMapper.xml:

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
        
            
    
            
            
    
            
    
    
    
    
    
            
            
            
    
                
    
    
            
        
        
            
        
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66

    demo3:

    package com.yzh7.test;
    
    import com.yzh7.entity.Emp;
    import com.yzh7.mapper.EmpMapper;
    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.After;
    import org.junit.Before;
    import org.junit.BeforeClass;
    import org.junit.Test;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.List;
    
    public class demo3 {
    
    
        @Test
        public void test1(){
            EmpMapper empMapper=session.getMapper(EmpMapper.class);
            List empList=empMapper.listAll();
            for(Emp e:empList){
                System.out.println(e);
            }
        }
    
    
        private static SqlSessionFactory factory;    //静态
        private SqlSession session;
    
        @BeforeClass
        public static void befCla() throws IOException {
            String resource = "mybatis_config.xml";   //mybatis_config.xml
            InputStream inputStream = Resources.getResourceAsStream(resource);
            factory = new SqlSessionFactoryBuilder().build(inputStream);
        }
    
        @Before
        public void bf(){
            session=factory.openSession();
        }
    
        @After
        public void af(){
            session.commit();
            session.close();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52

    // A code block
    var foo = 'bar';
    
    • 1
    • 2

    // A code block
    var foo = 'bar';
    
    • 1
    • 2
  • 相关阅读:
    C++ //练习 10.37 给定一个包含10个元素的vector,将位置3到7之间的元素按逆序拷贝到一个list中。
    C++ map和set(补充)
    Command CodeSign failed with a nonzero exit code
    CNN网络测试集准确率始终无法提高
    LangChain入门学习笔记(五)—— Model I/O之Chat Models
    [附源码]java毕业设计天悦酒店管理系统
    python xlrd+xlwt+xlutils处理excel
    Django day1
    2020年MathorCup数学建模D题新零售目标产品的精准需求预测解题全过程文档加程序
    学习Java应该关注哪些网站?
  • 原文地址:https://blog.csdn.net/Liu_wen_wen/article/details/126357682