博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyBatis多对多保存示例——MyBatis学习笔记之十七
阅读量:6203 次
发布时间:2019-06-21

本文共 4165 字,大约阅读时间需要 13 分钟。

前几天有网友问到MyBatis多对多的问题,不过愧对网友厚爱的是,最近一直忙,直到现在才有时间处理此事。今天就先写一个多对多保存的示例,算是对这位网友的初步回应,以后会有更多相关的博文发表。

为演示多对多,我们可以模拟学生选课的情形。一个学生可以选修多门课程,一门课程可以被多个学生选修。显然,这是一种多对多的关系。先创建课程表如下(本文示例完整源码下载:):

SET FOREIGN_KEY_CHECKS=0;DROP TABLE IF EXISTS `course`;CREATE TABLE `course` (`id` int(11) NOT NULL AUTO_INCREMENT,`course_code` varchar(20) NOT NULL COMMENT '课程编号',`course_name` varchar(50) NOT NULL COMMENT '课程名称',PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;-- ------------------------------ Records of course-- ----------------------------INSERT INTO `course` VALUES ('1', 'zj01', '数据结构');

接着创建学生选修表,用来保存学生的选课信息,如下:

SET FOREIGN_KEY_CHECKS=0;-- ------------------------------ Table structure for `student_course`-- ----------------------------DROP TABLE IF EXISTS `student_course`;CREATE TABLE `student_course` (`id` int(11) NOT NULL AUTO_INCREMENT,`student_id` int(11) NOT NULL COMMENT '选课学生id',`course_id` int(11) NOT NULL COMMENT '所选课程的id',PRIMARY KEY (`id`),KEY `student_id` (`student_id`),KEY `course_id` (`course_id`),CONSTRAINT `student_course_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `student` (`id`),CONSTRAINT `student_course_ibfk_2` FOREIGN KEY (`course_id`) REFERENCES `course` (`id`)) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

由以上可看出,表中的student_id字段和course_id字段分别作为外键关联到了sutdent表和course表的主键。

创建对应的课程实体类。

package com.abc.domain;import java.util.List;public class Course{private int id;private String courseCode;  //课程编号private String courseName;//课程名称private List
students;//选课学生public int getId(){return this.id;}public void setId(int id){this.id = id;}public String getCourseCode(){return this.courseCode;}public void setCourseCode(String courseCode){this.courseCode = courseCode;}public String getCourseName(){return this.courseName;}public void setCourseName(String courseName){this.courseName = courseName;}}

为学生实体类添加所选课程属性如下:

private List
courses;//所选的课程//getter和setterpublic List
getCourses(){return this.courses;}public void setCourses(List courses){this.courses = courses;}

接下来为Course实体编写映射器接口和文件、DAO类,这与以前一样。详见以下代码,不再赘述。

CourseMapper.java

package com.abc.mapper;import com.abc.domain.Course;public interface CourseMapper {public Course getById(int id);}

CourseMapper.xml

CourseDao.java

package com.abc.dao;import com.abc.mapper.CourseMapper;import com.abc.domain.Course;public class CourseDao {private CourseMapper courseMapper;//studentMapper的setter和getter方法public void setCourseMapper(CourseMapper courseMapper){this.courseMapper = courseMapper;}public CourseMapper getCourseMapper(){return this.courseMapper;}public Course getById(int id){return this.courseMapper.getById(id);}}

CourseMapperCourseDaospring中的配置如下:

要保存学生选课信息,先在StudentMapper接口中添加一个方法,如下:

public void saveElecCourse(Student student, Course course);

映射文件StudentMapper.xml中添加相应的insert语句如下:

insert into student_course(student_id,course_id)values(#{param1.id},#{param2.id})

在StudentDao类中添加相关方法如下:

//保存学生选课信息public void saveElecCourse(Student student, Course course){this.studentMapper.saveElecCourse(student, course);}

接下来是运行类(ManyToManyDemo.java)。在这个类中,我们让id8的学生(刘晓)选修id1的课程(数据结构)。代码如下:

package com.demo;import org.springframework.context.ApplicationContext;import com.abc.domain.Student;import com.abc.domain.Teacher;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.abc.dao.StudentDao;import com.abc.dao.CourseDao;import com.abc.domain.Course;public class ManyToManyDemo{private static ApplicationContext ctx;static{//在类路径下寻找resources/beans.xml文件ctx = new ClassPathXmlApplicationContext("resources/beans.xml");}public static void main(String[] args){//从Spring容器中请求Dao对象StudentDao studentDao =(StudentDao)ctx.getBean("studentDao");CourseDao courseDao =(CourseDao)ctx.getBean("courseDao");Student student = studentDao.getById(8);Course course = courseDao.getById(1);studentDao.saveElecCourse(student, course);}}

运行结束后,选修表中已插入了这名学生的选课信息,如下图所示。

      

       MyBatis技术交流群:188972810,或扫描二维码:


【MyBatis学习笔记】系列之十七:MyBatis多对多保存示例

转载地址:http://qxmca.baihongyu.com/

你可能感兴趣的文章
notepad++ 中配置 python一键运行
查看>>
Shiro之与SpringMVC集成
查看>>
Android应用被强制停止后无法接受广播解决方案
查看>>
mysql (已解决)Access denied for user 'root'@'localhost' (using password: NO)
查看>>
面试随笔2
查看>>
CSS - 修改input - placeholder 和 readonly 的样式
查看>>
Revel运行APP出现的路径问题
查看>>
VSCODE C/C++配置
查看>>
POJ 2188线段树求逆序对
查看>>
android studio :cannot resolve symbol R
查看>>
vi 整行 多行 复制与粘贴
查看>>
Window_Bat_Scripts—检测特定网段未使用的IP地址
查看>>
深入理解计算机系统(第三版) csapp 第三章部分答案
查看>>
Windows 的GUID
查看>>
Git详解之三 Git分支
查看>>
简单工厂
查看>>
编程笔记 2017-08-11
查看>>
paper 20 :color moments
查看>>
paper 101:图像融合算法及视觉艺术应用
查看>>
绘图笔记
查看>>