IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> mybatis关联映射(表的三种关系,含具体代码) -> 正文阅读

[Java知识库]mybatis关联映射(表的三种关系,含具体代码)

目录

1、数据库表与表之间的关系

2、项目运用

一、一对一?? 多对一

二、一对多


1、数据库表与表之间的关系

一对一:在任意一个表中设置一个外键

一对多:

在多的表中设置外键,标记少的表中id

多对多:(学生--选课)

??????? 建立关系表


2、项目运用

一、一对一?? 多对一

查询每个学生的对应的老师

?????????

查询每个学生的对应的老师

SELECT s.id,s.Sname,t.Tname FROM student s,teacher t where s.t_id = t.id

在项目中,建立两个javaBeen,一个是Student.java,另一个是Teacher.java文件

将数据库中的字段设置为私有,并把teacher字段设置到Student.java中。设置Get()、Set()、ToString()方法。

StudentMapper.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="com.qcby.dao.StudentDao">
    <!--

    1.查询出所有老师学生的信息
    2.根据查询出来的t_id进行关联
    -->
    <select id="getStudent" resultMap="StudentTeacher">
        select * from student;
    </select>
    <resultMap id="StudentTeacher" type="com.qcby.enty.Student">
        <id property="id" column="id"/>
        <result property="Sname" column="Sname"/>
        <result property="sex" column="sex"/>
        <result property="age" column="age"/>
        <result property="t_id" column="t_id"/>
        <!--property: 指定的student类当中关联的字段-->
        <!--column :两个表的关联字段-->
        <!--javaType: 复杂属性的类型  -->
        <!--select: 调用方法 -->
        <association property="teacher" column="t_id" javaType="com.qcby.enty.Teacher" select="getTeacher"/>
    </resultMap>
    <select id="getTeacher" resultType="com.qcby.enty.Teacher">
        select * from teacher where id = #{t_id}
    </select>


    <!--第二种-->
    <!--    按照结果嵌套处理-->
    <select id="getStudent1" resultMap="StudentTeacher1">
   SELECT  student.id,student.Sname,teacher.Tname FROM student  LEFT JOIN teacher  on student.t_id = teacher.id
</select>
    <resultMap id="StudentTeacher1" type="com.qcby.enty.Student">
        <result property="id" column="id"/>
        <result property="Sname" column="Sname"/>
        <result property="sex" column="sex"/>
        <result property="age" column="age"/>
        <result property="t_id" column="t_id"/>
        <association property="teacher" javaType="com.qcby.enty.Teacher">
            <result property="id" column="id"/>
            <result property="Tname" column="Tname"/>
        </association>
    </resultMap>

</mapper>

StudentTest.java

package com.qcby.test;

import com.qcby.dao.StudentDao;
import com.qcby.dao.UserDao;
import com.qcby.enty.Student;
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.Test;

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

public class StudentTest {

    private InputStream in = null;
    private SqlSession session = null;
    private StudentDao mapper = null;

    @Before  //前置通知, 在方法执行之前执行
    public void init() throws IOException {
        //加载主配置文件,目的是为了构建SqlSessionFactory对象
        in = Resources.getResourceAsStream("SqlMapConfig.xml");
        //创建SqlSessionFactory对象
        SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in);
        //通过SqlSessionFactory工厂对象创建SqlSesssion对象
        session = factory.openSession();
        //通过Session创建UserDao接口代理对象
        mapper = session.getMapper(StudentDao.class);
    }

    @After  //@After: 后置通知, 在方法执行之后执行 。
    public void destory() throws IOException {
        //释放资源
        session.close();
        in.close();
    }
    @Test
    public  void getStudent(){
        List<Student> students = mapper.getStudent();
        for (Student student:students){
            System.out.println(student.toString());
        }
    }
    @Test
    public  void getStudent1(){
        List<Student> students = mapper.getStudent();
        for (Student student:students){
            System.out.println(student.toString());
        }
    }

}

StudentDao.java

package com.qcby.dao;

import com.qcby.enty.Student;

import java.util.List;

public interface StudentDao {

    List<Student> getStudent();
    List<Student> getStudent1();
}

?


二、一对多

查询每个老师有多少学生

在Teacher.java中加入? private List<Student> student;并生成Get()、Set()、ToString()方法。

建立一个TeacherMapper.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="com.qcby.dao.TeacherDao">
    <select id="getTeacher" resultMap="TeacherStudent">
        select * from teacher;
    </select>
    <resultMap id="TeacherStudent" type="com.qcby.enty.Teacher">
        <id property="id" column="id"/>
        <result property="Tname" column="Tname"/>
        <!--针对集合-->
        <!--property: 指定的student类当中关联的字段-->
        <!--column :该表的关联字段-->
        <!--javaType: 相关字段类型  -->
        <!--ofType :泛型的具体类型-->
        <!--select: 调用方法 -->
        <collection property="student" column="id" javaType="ArrayList" ofType="com.qcby.enty.Student"
           select="getStudentByTeacherTd"/>
    </resultMap>
    <select id="getStudentByTeacherTd" resultType="com.qcby.enty.Student">
        select  * from student where t_id = #{t_id}
    </select>
</mapper>

注意:这个时候要在SqlMapConfig.xml中加入关联的语句

<mapper resource="mapper/TeacherMapper.xml"></mapper>

TeacherDao.java

package com.qcby.dao;

import com.qcby.enty.Teacher;

import java.util.List;

public interface TeacherDao {
    List<Teacher> getTeacher();
}

TeacherTest.java

package com.qcby.test;

import com.qcby.dao.StudentDao;
import com.qcby.dao.TeacherDao;
import com.qcby.enty.Student;
import com.qcby.enty.Teacher;
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.Test;

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

public class TeacherTest {

        private InputStream in = null;
        private SqlSession session = null;
        private TeacherDao mapper = null;

        @Before  //前置通知, 在方法执行之前执行
        public void init() throws IOException {
            //加载主配置文件,目的是为了构建SqlSessionFactory对象
            in = Resources.getResourceAsStream("SqlMapConfig.xml");
            //创建SqlSessionFactory对象
            SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(in);
            //通过SqlSessionFactory工厂对象创建SqlSesssion对象
            session = factory.openSession();
            //通过Session创建UserDao接口代理对象
            mapper = session.getMapper(TeacherDao.class);
        }

        @After  //@After: 后置通知, 在方法执行之后执行 。
        public void destory() throws IOException {
            //释放资源
            session.close();
            in.close();
        }


        @Test
        public void getTeacher(){
            List<Teacher> teachers = mapper.getTeacher();
            for (Teacher teacher:teachers
                 ) {
                System.out.println(teacher.toString());

            }
        }

    }

运行结果:

?

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-02-19 01:00:55  更:2022-02-19 01:03:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:46:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码