Mybatis 에서 Collection 집합 태그 사용 에 대한 자세 한 설명

my batis 의 간단 한 CURD 는 말 할 필요 도 없 이 인터넷 관련 블 로그 문서 가 산 더미 처럼 쌓 여 있다.Mybatis 에 있 는 collection 집합 조 회 를 분석 해 보 세 요.
한 반 에 여러 명의 학생 이 있다 고 가정 하면 반 번 호 를 통 해 이 반 의 정 보 를 조회 하고 반 안의 모든 학생 들 의 정 보 를 조회 하 는 것 이다.일반적인 방법 은 반 번 호 를 통 해 반 의 정 보 를 조회 한 다음 에 반 ID 번 호 를 통 해 이 반 안의 모든 학생 들 을 조회 하 는 것 이다.우 리 는 이런 통용 적 인 방법 을 사용 하지 않 는 다.
1.학급 실체 클래스 는 다음 과 같이 정의 할 수 있다.

import java.util.List;

public class ClazzEntity {

  private int clazzID;

  private String clazzName;

  private List<StudentEntity> studentList;

  public int getClassID() {
    return clazzID;
  }

  public int getClazzID() {
    return clazzID;
  }

  public void setClazzID(int clazzID) {
    this.clazzID = clazzID;
  }

  public String getClazzName() {
    return clazzName;
  }

  public void setClazzName(String clazzName) {
    this.clazzName = clazzName;
  }

  public List<StudentEntity> getStudentList() {
    return studentList;
  }

  public void setStudentList(List<StudentEntity> studentList) {
    this.studentList = studentList;
  }
}
학생 실체 클래스 정의:

package com.cn.hnust.pojo;

public class StudentEntity {

  private int stuID;

  private String stuName;

  private int stuAge;

  private String stuAddress;

  public int getStuID() {
    return stuID;
  }

  public void setStuID(int stuID) {
    this.stuID = stuID;
  }

  public String getStuName() {
    return stuName;
  }

  public void setStuName(String stuName) {
    this.stuName = stuName;
  }

  public int getStuAge() {
    return stuAge;
  }

  public void setStuAge(int stuAge) {
    this.stuAge = stuAge;
  }

  public String getStuAddress() {
    return stuAddress;
  }

  public void setStuAddress(String stuAddress) {
    this.stuAddress = stuAddress;
  }
}
2.데이터베이스 작성 문:

CREATE TABLE student_t
(
stuno INT PRIMARY KEY,
stuname VARCHAR(20),
stuage INT,
stuaddress VARCHAR(20) ,
classid INT
);
CREATE TABLE class_t
(
classid INT PRIMARY KEY,
classname VARCHAR(20)
);

3.ClazzEntity 의 학생 정보 목록 Student Entity 를 조회 하고 mybatis 의 collection 탭 을 통 해 설정 합 니 다.그 중에서 ofType 은 되 돌아 오 는 학생 정 보 를 조회 하 는 실체 클래스 입 니 다.select 는 학생 목록 을 조회 하 는 검색 어 입 니 다.mybatis 의 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.cn.hnust.dao.InfoManageDao" >

 <resultMap id="ClazzResultMap" type="com.cn.hnust.pojo.ClazzEntity" >
  <id column="classID" property="clazzID" jdbcType="INTEGER" />
  <result column="className" property="clazzName" jdbcType="VARCHAR" />
  <collection property="studentList" column="classID" javaType="ArrayList" 
        ofType="com.cn.hnust.pojo.StudentEntity" select="getStudentByClassID"/>
 </resultMap>

 <resultMap id="StudentResultMap" type="com.cn.hnust.pojo.StudentEntity"> 
  <id property="stuID" column="stuID" /> 
  <result property="stuName" column="stuName" /> 
  <result property="stuAge" column="stuAge" /> 
  <result property="stuAddress" column="stuAddress" />
 </resultMap> 

<select id="getClassByID" resultMap="ClazzResultMap" parameterType="java.lang.Integer" >
  select classID,className
  from class_t
  where classID = #{clazzID}
</select>

<select id="getStudentByClassID" resultMap="StudentResultMap" parameterType="java.lang.Integer" >
  select stuID,stuName,stuAge,stuAddress,classID
  from student_t
  where classID = #{clazzID}
</select>

</mapper>
이렇게 하면 한 반 의 정보 와 반 안의 모든 학생 정 보 를 찾 을 수 있다.
ClazzEntity [clazzID=1, clazzName=junior, studentList=[StudentEntity [stuID=1001, stuName=wanghai, stuAge=18, stuAddress=beijing], StudentEntity [stuID=1002, stuName=zhangdong, stuAge=20, stuAddress=shanghai]]]
Mybatis 의 Collection 집합 태그 사용 에 대한 자세 한 설명 은 여기까지 입 니 다.Mybatis 의 Collection 집합 태그 내용 에 대해 서 는 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기