MyBatis_resultMap的N+1方式实现多表查询(多对 一)

项目结构

1.实体类
2.Mapper层
3.service层
4.工具层
5.测试层

项目截图

MyBatis_resultMap的N+1方式实现多表查询(多对 一)_第1张图片
1、实体类

创建班级类(Clazz)和学生类(Student),添加相应的方法。 并在 Student 中添
加一个 Clazz 类型的属性, 用于表示学生的班级信息.
在这里插入图片描述
在这里插入图片描述

2 mapper 层

提供StudentMapper和ClazzMapper, StudentMapper查询所
有学生信息, ClazzMapper 根据编号查询班级信息.
在这里插入图片描述
在这里插入图片描述

clazzMapper.xml



  

	

student.xml




	
	
		
		
		
	
	

3、service层
在这里插入图片描述

package cn.bjsxt.service.impl;

import java.util.List;

import org.apache.ibatis.session.SqlSession;

import cn.bjsxt.mapper.StudentMapper;
import cn.bjsxt.pojo.Student;
import cn.bjsxt.service.StudentService;
import cn.bjsxt.util.MyBatisUtil;

public class StudentServiceImpl implements StudentService {

	@Override
	public List selAll() {
		SqlSession session = MyBatisUtil.getSession();

		// 学生Mapper
		StudentMapper stuMapper = session.getMapper(StudentMapper.class);

		List list = stuMapper.selAll();

		session.close();
		return list;
	}

}

4、工具层

public class MyBatisUtil {
	private static SqlSessionFactory factory=null;
	
	static {
		
		try {
			InputStream is = Resources.getResourceAsStream("mybatis-cfg.xml");
			factory=new SqlSessionFactoryBuilder().build(is);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	public static SqlSession getSession() {
		SqlSession session=null;
		if (factory!=null) {
			//true表示开启自动提交功能,防止回滚,但是运行多条sql语句可能出问题
			//session=factory.openSession(true);
			session=factory.openSession();
		}
		return session;
	}
}

5、测试层

public class TestQuery {

	public static void main(String[] args) {
		StudentService ss = new StudentServiceImpl();
		List list = ss.selAll();
		for (Student student : list) {
			System.out.println(student);
		}
	}

}

运行结果
MyBatis_resultMap的N+1方式实现多表查询(多对 一)_第2张图片

你可能感兴趣的:(MyBatis框架,resultMap)