鉴别器(discriminator)是MyBatis为我们提供的第三个级联也是最后一个。基于之前两篇级联中的场景,现增加学生们去体检,但男女体检项目不一样,我们把男女体检表做成两张表,当然我想也可以设计为一张表,只有女生的项目男生不填就行了,为了讲解鉴别器就把男女体检表分开。鉴别器的作用在这里就是根据性别的不同去不同的表里进行查询体检情况,例如是男生就在男生体检表里查询,是女生就在女生体检表里查询。
POJO类我们也分为了男生、女生,他们分别继承之前的Student类。
MaleStudent类:
package day_8_mybatis.pojo; import java.util.List; /**
* @author turbo
*
* 2016年11月6日
*/
public class MaleStudent extends Student {
List<MaleStudentHealth> studentHealthList;
//省略getter/setter方法
}
一个学生和他体检表的对应关系应该是一对一的关系,为什么在这里是一对多的关系呢?呃……这是因为在体检表的设计中有一个日期的字段,也就是说一个学生在不同时间的体检情况都有记录,所以学生和体检表的对应关系就是一对多的关系,在这里也就是一个List的引用。
FemaleStudent类:
package day_8_mybatis.pojo; import java.util.List; /**
* @author turbo
*
* 2016年11月6日
*/
public class FemaleStudent extends Student{
List<FemaleStudentHealth> studentHealthList;
//省略getter/setter方法
}
这里的List的引用道理同上。
现在看看体检表的POJO类。
MaleStudentHealth类:
package day_8_mybatis.pojo; /**
* @author turbo
*
* 2016年11月6日
*/
public class MaleStudentHealth {
private int id;
private int studentId;
private String date;
private String prostate; //前列腺
//省略setter/getter方法
}
FemaleStudentHealth类:
package day_8_mybatis.pojo; /**
* @author turbo
*
* 2016年11月6日
*/
public class FemaleStudentHealth {
private int id;
private int studentId;
private String date;
private String womb;
//省略setter/getter方法
}
基本的数据结构设计就是上面所贴出来的代码了。下面我们看看mapper映射器,对于体检情况的查询不管男生女生都是通过student_id来查询的。
查询根据男生的student_id查询该生的体检表:
package day_8_mybatis.mapper; import day_8_mybatis.pojo.MaleStudentHealth; /**
* @author turbo
*
* 2016年11月6日
*/
public interface MaleStudentHealthMapper {
MaleStudentHealth findMaleStudentHealthByStudentId(int id);
}
其对应的MaleStudentHealthMapper.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="day_8_mybatis.mapper.MaleStudentHealthMapper">
<select id="findMaleStudentHealthByStudentId" parameterType="int" resultType="day_8_mybatis.pojo.MaleStudentHealth">
select id, student_id as studentId, date, prostate from t_male_student_health where student_id = #{id}
</select>
</mapper>
查询根据女生的student_id查询该生的体检表:
package day_8_mybatis.mapper; import day_8_mybatis.pojo.FemaleStudentHealth; /**
* @author turbo
*
* 2016年11月6日
*/
public interface FemaleStudentHealthMapper {
FemaleStudentHealth findFemaleStudentHealthByStudentById(int id);
}
其对应的FemaleStudentHealthMapper.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="day_8_mybatis.mapper.FemaleStudentHealthMapper">
<select id="findFemaleStudentHealthByStudentById" parameterType="int" resultType="day_8_mybatis.pojo.FemaleStudentHealth">
select id, student_id as studentId, date, womb from t_female_student_health where student_id = #{id}
</select>
</mapper>
基本工作已经做完了,剩下就是在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="day_8_mybatis.mapper.StudentMapper">
<resultMap type="day_8_mybatis.pojo.Student" id="studentMap">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="sex" column="sex"/>
<association property="selfCard" column="id" select="day_8_mybatis.mapper.SelfCardMapper.findSelfCardByStudentId"/>
<collection property="courseScoreList" column="id" select="day_8_mybatis.mapper.CourseScoreMapper.findCourseScoreByStudentId" />
<discriminator javaType="string" column="sex">
<case value="男" resultMap="maleStudentMap"/>
<case value="女" resultMap="femaleStudentMap"/>
</discriminator>
</resultMap> <select id="getStudent" parameterType="int" resultMap="studentMap">
select id, name, sex from t_student where id = #{id}
</select> <resultMap id="maleStudentMap" type="day_8_mybatis.pojo.MaleStudent" extends="studentMap">
<collection property="studentHealthList" select="day_8_mybatis.mapper.MaleStudentHealthMapper.findMaleStudentHealthByStudentId" column="id" />
</resultMap> <resultMap id="femaleStudentMap" type="day_8_mybatis.pojo.FemaleStudent" extends="studentMap">
<collection property="studentHealthList" select="day_8_mybatis.mapper.FemaleStudentHealthMapper.findFemaleStudentHealthByStudentById" column="id" />
</resultMap>
</mapper>
第12-15行就是本节的要讲的discriminator鉴别器,它通过查询出来的学生性别选择不同的体检表来查询出体检情况。
最后稍微修改的测试类,即可测试结果。
package day_8_mybatis; import java.io.IOException;
import java.io.InputStream; import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession; import day_8_mybatis.mapper.StudentMapper;
import day_8_mybatis.pojo.MaleStudent;
import day_8_mybatis.util.SessionFactory2; /**
* 客户端
* @author turbo
*
* 2016年11月6日
*/
public class Main { /**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws Exception {
String resource = "day_8_mybatis/mybatis-config.xml"; //获取mybatis配置文件路径
InputStream inputStream = Resources.getResourceAsStream(resource);
SqlSession sqlSession = SessionFactory2.getInstance(inputStream).openSession();
StudentMapper studentMapper = sqlSession.getMapper(StudentMapper.class);
MaleStudent student =(MaleStudent)studentMapper.getStudent(1);
System.out.println("学生:" + student.getName() + " 课程:" + student.getCourseScoreList().get(0).getCourse().getCourseName() + " 分数:" + student.getCourseScoreList().get(0).getScore()+ " 性别:" + student.getSex() + " 前列腺:" + student.getStudentHealthList().get(0).getProstate()); } }
别忘了把新增加的mapper映射注册到mybatis-config.xml配置文件中。