文章目录
- 零、本节学习目标
 - 一、查询需求
 - 二、打开MyBatisDemo项目
 - 三、对学生表实现条件查询
 - (一)创建学生映射器配置文件
 - (二)在MyBatis配置文件里注册学生映射器配置文件
 - (三)创建学生映射器接口
 - (四)创建测试类TestStudentMapper
 - 1、查询女生记录
 - 2、查询19岁的女生
 - 3、查询姓吴的19岁女生
 - 4、查找姓张的19岁女生
 
零、本节学习目标
- 理解条件查询的含义
 - 掌握利用MyBatis实现条件查询
 
一、查询需求
- 对学生表进行条件查询,涉及姓名、性别和年龄三个字段。

 - 比如查询姓“吴”,性别为“女”,同时年龄为19的学生记录。

 
二、打开MyBatisDemo项目
- 打开MyBatis框架学习笔记03里的MyBatisDemo项目

 
三、对学生表实现条件查询
(一)创建学生映射器配置文件
- 在resources/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="net.hw.mybatis.mapper.StudentMapper">
    <select id="findByCondition" parameterType="java.util.Map" resultMap="studentResultMap">
        SELECT * FROM t_student
        <trim prefix="WHERE" prefixOverrides="AND|OR">
            <if test="name != null">
                s_name Like CONCAT(#{name},'%')
            </if>
            <if test="gender != null">
                AND s_gender = #{gender}
            </if>
            <if test="age != null">
                AND s_age = #{age}
            </if>
        </trim>
    </select>
    <resultMap id="studentResultMap" type="Student">
        <result column="s_id" property="id"/>
        <result column="s_name" property="name"/>
        <result column="s_gender" property="gender"/>
        <result column="s_age" property="age"/>
        <association property="clazz" column="class_id" javaType="Clazz" select="getClazz"/>
    </resultMap>
    <select id="getClazz" resultType="Clazz">
        SELECT c_id id, c_name name FROM t_class WHERE c_id = #{id};
    </select>
</mapper>
 
(二)在MyBatis配置文件里注册学生映射器配置文件
- 在
<mappers>元素里添加子元素<mapper resource="mapper/StudentMapper.xml"/>

 
(三)创建学生映射器接口
- 在net.hw.mybatis.mapper包里创建学生映射器接口 - StudentMapper

 
package net.hw.mybatis.mapper;
import net.hw.mybatis.bean.Student;
import java.util.List;
import java.util.Map;
/**
 * 功能:学生映射器接口
 * 作者:华卫
 * 日期:2021年03月05日
 */
public interface StudentMapper {
    List<Student> findByCondition(Map<String, Object> condition);
}
 
(四)创建测试类TestStudentMapper

package net.hw.mybatis.mapper;
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 java.io.IOException;
import java.io.Reader;
/**
 * 功能:测试学生映射器接口
 * 作者:华卫
 * 日期:2021年03月05日
 */
public class TestStudentMapper {
    private SqlSession sqlSession; // SQL会话
    private StudentMapper studentMapper; // 学生映射器
    @Before
    public void init() {
        try {
            // 读取MyBatis配置文件作为字符输入流
            Reader reader = Resources.getResourceAsReader("mybatis-config.xml");
            // 基于MyBatis配置文件构建SQL会话工厂
            SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader);
            // 利用SQL会话工厂获取SQL会话
            sqlSession = factory.openSession();
            // 利用SQL会话获取学生映射器对象
            studentMapper = sqlSession.getMapper(StudentMapper.class);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    @After
    public void destroy() {
        // 关闭SQL会话
        sqlSession.close();
    }
}
 
1、查询女生记录
- 添加测试方法testFindByCondition()

 - 运行测试方法testFindByCondition(),查看结果

 
2、查询19岁的女生
- 修改测试方法里的查询条件

 - 运行测试方法testFindByCondition(),查看结果

 
3、查询姓吴的19岁女生
- 修改测试方法里的查询条件

 - 运行测试方法testFindByCondition(),查看结果

 
4、查找姓张的19岁女生
- 修改测试方法里的查询条件

 - 运行测试方法testFindByCondition(),查看结果

 



















