首页 > 技术文章 > SSM-Mybatis

zwq023 2021-02-07 17:56 原文

Mybatis

环境:

  • JDK1.8
  • Mysql
  • maven
  • IDEA

回顾:

  • JDBC

  • Mysql

  • java基础

  • Maven

  • Junit

ssm框架:

1.简介

1.1什么是Mybatis

  • MyBatis 是一款优秀的持久层框架

  • 它支持自定义 SQL、存储过程以及高级映射。

  • MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。

  • MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。

  • MyBatis 本是apache的一个开源项目iBatis, 2010年这个项目由apache software foundation 迁移到了[google code](https://baike.baidu.com/item/google code/2346604),并且改名为MyBatis 。

  • 2013年11月迁移到Github

如何获得Mybatis?

1.2持久层

数据持久化

  • 持久化就是将程序的数据在持久状态和瞬时状态转化的过程
  • 内存:断电即失
  • 数据库:数据库(jdbc),io文件持久化
  • 生活持久化:冷藏,罐头

为什么需要持久化

有一些对象,不能让他丢掉

  • 内存太贵

1.3持久层

Dao层,Service层,Controller层

  • 完成持久化工作的代码块
  • 层界限十分明显

1.4为什么需要Mybatis?

  • 帮助程序员将数据存入数据库中

  • 方便

  • 传统的JDBC太复杂,简化。框架。自动化

  • 优点:

    • 简单易学:没有任何第三方依赖,通过文档和源代码,可以比较完全的掌握它的设计思路和实现。

    • 灵活:mybatis不会对应用程序或者数据库的现有设计强加任何影响。 sql写在xml里,便于统一管理和优化。通过sql语句可以满足操作数据库的所有需求。

    • 解除sql与程序代码的耦合:通过提供DAO层,将业务逻辑和数据访问逻辑分离,使系统的设计更清晰,更易维护,更易单元测试。sql和代码的分离,提高了可维护性。

    • 提供映射标签,支持对象与数据库的orm字段关系映射

    • 提供对象关系映射标签,支持对象关系组建维护

    • 提供xml标签,支持编写动态sql。

2.第一个Mybatis程序

思路:搭建环境-->导入Mybatis-->编写代码-->测试!

2.1搭建环境

  • create database Mybatis;
    use Mybatis;
    create table user(
    id int(20) not null primary key,
    name varchar(30) default null,
    pwd varchar(30) default null
    )engine=innodb default charset=utf8;
    insert into user(id,name,pwd) values
    (1,'张三',123456),
    (2,'李四',789456),
    (3,'王五',822565)
    

新建项目

1.新建一个普通的maven项目

2.删除项目下的src文件

3.导入maven依赖

  • <!--导入依赖架包-->
        <dependencies>
            <!--mysql驱动-->
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>8.0.22</version>
            </dependency>
            <!--mybatis-->
            <dependency>
                <groupId>org.mybatis</groupId>
                <artifactId>mybatis</artifactId>
                <version>3.5.6</version>
            </dependency>
            <!--junit-->
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.13</version>
                <scope>test</scope>
            </dependency>
        </dependencies>
    

2.2创建一个模块

  • 编写mybatis核心配置文

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE configuration
            PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
            "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <!--核心配置文件-->
    <configuration>
        <environments default="development">
            <environment id="development">
                <transactionManager type="JDBC"/>
                <dataSource type="POOLED">
                    <property name="driver" value="com.mysql.cj.jdbc.Driver"/>
                    <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&amp;useUnicode&amp;characterEncoding=UTF-8&amp;serverTimeZone=Shanghai"/>
                    <property name="username" value="root"/>
                    <property name="password" value="dh099023"/>
                </dataSource>
            </environment>
        </environments>
    
    </configuration>
    
  • 编写Mybatis工具类

    import org.apache.ibatis.session.SqlSession;
    import org.apache.ibatis.session.SqlSessionFactory;
    import org.apache.ibatis.io.Resources;
    import org.apache.ibatis.session.SqlSessionFactoryBuilder;
    
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * 工具类 创建sqlSessionFactory工厂,工厂用来生产可执行sql命令的对象SqlSession
     * sqlSessionFactory--->Sqlsession
     */
    public class MybatisUtils {
        private static SqlSessionFactory sqlSessionFactory;
        //静态代码块。初始就会进行加载操作
        static{
        try{
            //获取sqlSessionFactory对象
            String resource = "mybatis-config.xml";
            InputStream inputStream = Resources.getResourceAsStream(resource);
            SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        }catch (IOException e)
        {
            e.printStackTrace();
        }
    
    
    
        }
        //已经存在sqlSessionFactory,就可以从工厂中获取sqlSesision的实例
        //sqlSession包含了面向数据库执行sql命令所需的所有方法
        public static SqlSession getSqlSession()
        {
        return sqlSessionFactory.openSession();
    
        }
    }
    
    

2.3编写代码

  • 实体类

    public class User {
    private int id;
    private  String name;
    private  String pwd;
    
        public int getId() {
            return id;
        }
    
        public void setId(int id) {
            this.id = id;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getPwd() {
            return pwd;
        }
    
        public void setPwd(String pwd) {
            this.pwd = pwd;
        }
    
        @Override
        public String toString() {
            return "User{" +
                    "id=" + id +
                    ", name='" + name + '\'' +
                    ", pwd='" + pwd + '\'' +
                    '}';
        }
    }
    
  • Dao接口类

    public interface UserDao {
        public List<User> getUserList();
    }
    
    
  • 接口实现类由原来的UserDaoImpl转变为一个Mapper配置文件

    <?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">
    <!--命名空间namespace=指定一个对应的Dao接口/Mapper接口-->
    <mapper namespace="com.zwq.dao.UserDao">
        <!--这里的id对应原来的方法名字-->
        <!--这里利用标签相当于实现UserDao接口的实现类-->
        <!--resultType最终返回结果为执行数据库操作的结果集,
        通俗来说需要有一个承载结果的容器来封装结果,Type是结果类型,需要将它返回到User
    中,这里要使用全限定类名,这里不理解可以去看一下反射机制
        -->
        <select id="getUserList" resultType="com.zwq.pojo.User">
            select * from mybatis.user
        </select>
    </mapper>
    

2.4测试

MapperRegistry是什么?

核心配置文件中注册mappers

  • junit测试

    public class UserDaoTest {
        @Test
        public void test()
        {
            //获取SqlSession对象
            SqlSession sqlSession=MybatisUtils.getSqlSession();
            //执行sql
            //利用反射机制通过获取UserDao的class文件来创建一个对象
            sqlSession.getMapper(UserDao.class);
            UserDao userDao=sqlSession.getMapper(UserDao.class);
            List<User> userList=userDao.getUserList();
            for (User user:userList
                 ) {
                System.out.println(user);
            }
            sqlSession.close();
        }
    
    }
    

可能遇到的问题

  1. 配置文件没有注册

  2. 绑定接口错误

  3. 方法名 错误

  4. 返回类型错误

  5. Maven导出资源问题

3.CRUD

3.1、namespace

namespace中的包名要和 Dao/Mapper 接口的包名一致!

3.2、select

选择,查询语句;

  • id:就是对应的namespace中的方法名

  • resultType:Sql语句执行的返回值!

  • paramerType:参数类型

  1. 编写接口

    //根据id查询用户
        User getUserById(int id);
    
  2. 编写对应的mapper中的sql语句

    <select id="getUserById" resultType="com.zwq.pojo.User" parameterType="int">
        select * from mybatis.user where id = #{id}
        </select>
    
  3. 测试

    @Test
    public void getUserById()
    {
     SqlSession sqlSession=MybatisUtils.getSqlSession();
        //sqlSession.getMapper(UserMapper.class);相当于 UserMapper usermapper=new UserMapperImpl();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
      User user=mapper.getUserById(41);
        System.out.println(user);
    sqlSession.close();
    }
    

3.3、insert

<insert id="addUser" parameterType="com.zwq.pojo.User">
        insert into mybatis.user(id,name,pwd) values (#{id},#{name},#{pwd});
    </insert>

3.4、update

    <update id="updateUser" parameterType="com.zwq.pojo.User">
        update mybatis.user set name =#{name},pwd=#{pwd} where id = #{id};
    </update>

3.5、delete

 <delete id="deleteUser" parameterType="int">
    delete from mybatis.user where id=#{id};
    </delete> 

注意点:

  • 增删改需要提交事物

Map的妙用

假设实体类对应的字段参数过多可以使用map

4.配置文件

4.1核心配置文件

  • mybatis-config.xml
  • MyBatis的配置文件包含了会深深影响MyBatis行为的设置和属性信息
properties(属性)
settings(设置)
typeAliases(类型别名)
typeHandlers(类型处理器)
objectFactory(对象工厂)
plugins(插件)
environments(环境配置)
environment(环境变量)
transactionManager(事务管理器)
dataSource(数据源)
databaseIdProvider(数据库厂商标识)
mappers(映射器)

4.2环境配置(environments)

MyBatis可以配置成适应多种环境,但每个SqlSessionFactory实例只能选择一种环境。

MyBatis默认的失误管理器就是JDBC,连接池:POOLED

4.3属性(properties)

可以通过properties读取配置文件

在resources下创建一个db.properties(账号密码需修改)

driver=com.mysql.cj.jdbc.Driverurl=jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username=roo
password=dh099023

在核心配置文件中引入

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <properties resource="db.properties"/>
    <environments default="development">
        <environment id="development">
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="${driver}"/>
                <property name="url" value="${url}"/>
                <property name="username" value="${username}"/>
                <property name="password" value="${password}"/>
            </dataSource>
        </environment>
    </environments>
    <mappers>
        <mapper resource="cn/ruanqinlong/mapper/UserMapper.xml"/>
    </mappers>
</configuration>

外部文件和内部配置重名时,优先使用外部配置文件

4.4类型别名(typeAliases)

通过在核心配置文件中为类取别名来方便操作。

  • 手动别名
<typeAliases>      
  <typeAlias type="cn.ruanqinlong.pojo.User" alias="User"/>    </typeAliases>
  • 扫描包(该方法扫描后的别名为类名首字母小写,例如:User—->user。若有注解,别名为其注解)
<package name="cn.ruanqinlong.pojo"/>

4.5设置

极其重要的部分

4.6映射器

MapperRegistry:绑定mapper文件

方式一:(每个mapper文件使用路径的方式绑定)

 <mappers>        
 <mapper resource="cn/ruanqinlong/mapper/UserMapper.xml"/>   </mappers>

方式二:(使用class进行绑定)

    <mappers>
        <mapper class="cn.ruanqinlong.mapper.UserMapper"></mapper>
    </mappers>

该方法必须mapper类与文件同名并且在同一文件夹下

方法三:(包扫描)

<mappers>
        <package name="cn.ruanqinlong.mapper"/>
    </mappers>

4.7生命周期

生命周期和作用域是至关重要的,错误的使用会导致非常严重的并发问题

SqlSessionFactoryBulider:

  • 只是创建了SqlSessionFactory
  • 局部变量

SqlSessionFactory:

  • 可以理解为数据库的连接池
  • 一旦创建就在应用期间一直存在
  • 静态变量

SqlSession:

  • 连接到连接池的一个请求
  • 需要开启与关闭
  • 不能共享

4.8解决属性名和平行名不一样的问题

数据库中字段名与实体类属性名不一致时产生问题

数据库中字段名为id name pwd

实体类属性名为 id name password

数据库查询结果:

image-20210202145212216

解决方案:

  • 方案一:起别名

        <select id="getUserById" resultType="com.zwq.pojo.User" parameterType="int"  >
            select id,name,pwd as password from mybatis.user where id=#{id}
        </select>
    
  • 方案二:结果集映射(Usermapper.xml)

     <!--resultMap结果集映射-->
       <resultMap id="UserMap" type="User">
           <!--column数据库中的字段,property实体类中的属性-->
           <result column="id" property="id"/>
           <result column="name" property="name"/>
           <result column="pwd" property="password"/>
       </resultMap>
    
        <select id="getUserById" resultMap="UserMap"  parameterType="int">
            <!--select * from mybatis.user where id = #{id}-->
            <!--select id,name,pwd as password from user where id = #{id}-->
            select * from mybatis.user where id = #{id}
        </select>
    
    
  • resultMap元素是MyBatis中最重要和最强大的元素

  • ResultMap的设计使得简单的语句根本不需要显式的结果映射

5.日志

5.1日志工厂

如果一个数据库操作异常,需要排除,所以就需要日志。

在MyBatis中具体使用哪一个日志,在配置文件中配置

  • SLF4J

  • LOG4J 掌握

  • LOG4J2

  • JDK_LOGGING

  • COMMONS_LOGGING

  • NO_LOGGING

  • STDOUT_LOGGING Java自带的标准日志输出文件

    <settings>        <setting name="logImpl" value="STDOUT_LOGGING"/>    </settings>

image-20210202151027446

6.Log4j

什么是log4j

  • Log4j是Apache的一个开源项目,通过使用Log4j,我们可以控制日志信息输送的目的地是控制台、文件、GUI组件
  • 控制每一条日志的输出格式
  • 通过定义每一条日志信息的级别,我们能够更加细致地控制日志的生成过程
  • 通过一个配置文件来灵活地进行配置,而不需要修改应用的代码
  1. 使用第一步导入log4j的包

    <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-core</artifactId>
        <version>2.13.1</version>
    </dependency>
    
    
    
  2. log4j.properties

    #将等级为DEBUG的日志信息输出到console和file这两个目的地,console和file的定义在下面的代码
    log4j.rootLogger=DEBUG,console,file
    #控制台输出的相关设置
    log4j.appender.console = org.apache.log4j.ConsoleAppender
    log4j.appender.console.Target = System.out
    log4j.appender.console.Threshold=DEBUG
    log4j.appender.console.layout = org.apache.log4j.PatternLayout
    log4j.appender.console.layout.ConversionPattern=[%c]-%m%n
    #文件输出的相关设置
    log4j.appender.file = org.apache.log4j.RollingFileAppender
    log4j.appender.file.File=./log/zwq.log
    log4j.appender.file.MaxFileSize=10mb
    log4j.appender.file.Threshold=DEBUG
    log4j.appender.file.layout=org.apache.log4j.PatternLayout
    log4j.appender.file.layout.ConversionPattern=[%p][%d{yy-MM-dd}][%c]%m%n
    #日志输出级别
    log4j.logger.org.mybatis=DEBUG
    log4j.logger.java.sql=DEBUG
    log4j.logger.java.sql.Statement=DEBUG
    log4j.logger.java.sql.ResultSet=DEBUG
    log4j.logger.java.sql.PreparedStatement=DEBUG
    
  3. 配置log4j为日志实现

      <settings>
        <setting name="logImpl" value="LOG4J"/>
    </settings>
    

简单使用

  1. 使用log4j的类中,导入import org.apache.log4j.Logger;

  2. 日志对象,参数为当前类的字节码文件

    static Logger logger=Logger.getLogger(UserDaoTest.class);//当前类的字节码文件
    
  3. 日志级别

    logger.info("info:进入了testlog4j");
    logger.debug("debug:进入了testlog4j");
    logger.error("error:进入了testlog4j");
    

7.分页

为什么要分页

  • 减少数据的处理量

7.1使用Limit分页

select = from user limit startIndex,pageSize; 
select = from user limit 3;#[0,n]

使用Mybayis实现分页,核心为SQL

  1. 接口

    List<User> getUserByLimit(Map<String,Integer> map);
    
  2. Mapperx.xml

    <!--分页实现查询-->
        <select id="getUserByLimit" parameterType="map" resultMap="UserMap">
            select * from user limit #{startIndex},#{pageSize}
        </select>
    
  3. 测试

     public void getUserByLimit()
        {
            SqlSession sqlSession=MybatisUtils.getSqlSession();
            UserMapper mapper=sqlSession.getMapper(UserMapper.class);
            HashMap<String,Integer> map=new HashMap<String,Integer>();
            map.put("startIndex",1);
            map.put("pageSize",2);
            List<User> users=mapper.getUserByLimit(map);
            for (User user:users
                 ) {
                System.out.println(user);
            }
            sqlSession.close();
        }
    

    7.2 RowBounds分页

不在使用SQL实现分页

  1. 接口

     List<User> getUserByRowBounds();
    
  2. mapper.xml

    <select id="getUserByRowBounds" resultMap="UserMap">
            select * from user
        </select>
    
  3. 测试

       public void  getUserByRowBounds()
        {
            SqlSession sqlSession=MybatisUtils.getSqlSession();
            //RowBounds实现分页
            RowBounds rowBounds=new RowBounds(1,2);
            rowBounds.getLimit();
            //通过java代码层面实现分页
            List<User> userList=sqlSession.selectList("com.zwq.dao.UserMapper.getUserByRowBounds",null,rowBounds);
            for (User user : userList) {
                System.out.println(user);
            }
            sqlSession.close();
        }
    

8.使用注解开发

8.1面向接口编程

  • 解溶解

  • 可拓展

  • 提高潜力

8.2使用注解开发

  1. 注解在接口上实现

    @Select("select * from user")
        List<User> getUsers();
    
  2. 需要在核心配置文件中绑定接口

      <mappers>
          <mapper class="com.zwq.dao.UserMapper"/>
      </mappers>
    
  3. 测试

    本质:反射机制实现

    底层:动态代理就是增强真实对象的功能方法

    Mybatis详细执行流程

考虑到基础入门阶段,这里暂时不详细叙述源码刨析详解,后续会更新

8.3利用注解进行CRUD

可以在工具类创建时候实现自动提交事务

    public static SqlSession getSqlSession()
    {
    return sqlSessionFactory.openSession(true);

    }

编写接口,增加注解

   @Select("select * from user where id=#{id}")
    User getUserById(@Param("id") int id);
    
    @Insert("insert into user(id,name,pwd) values (#{id},#{name},#{password})")
    int addUser( User user);

    @Update("update user set name=#{name},pwd=#{password} where id= #{id}")
    int updateUser(User user);
    
    @Delete("delete from user where id=#{id}")
    //基本数据类型需要加上参数注解
    int deleteUser(@Param("id") int id);

测试类

​ 【必须要将接口注册绑定到核心配置文件当中

关于@Param()注解

  • 基本类型的参数或者String类型,需要加上
  • 引用类型无需添加
  • 如果只有一个基本类型,可以忽略,但建议加上
  • 在SQL中引用的就是这里的@Param("uid")中设定的属性名

9.Lombok

Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
  • java library
  • plugs
  • build tools
  • with one annotation your class

使用步骤:

  1. 在IDEA中安装lombok插件

  2. 在项目中导入lombok的jar包

      <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.18</version>
            <scope>provided</scope>
        </dependency>
    
  3. 在实体类中添加相应方法注解

    @Getter and @Setter
    @FieldNameConstants
    @ToString
    @EqualsAndHashCode
    @AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
    @Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger, @CustomLog
    @Data
    @Builder
    @SuperBuilder
    @Singular
    @Delegate
    @Value
    @Accessors
    @Wither
    @With
    @SneakyThrows
    @val
    @var
    experimental @var
    @UtilityClass
    

    说明:

    @Data:无参构造,get,set,toString,hashcode,equals
    @AllArgsConstructor:有参构造
    @NoArgsConstructor:无参构造
    

10.多对一处理

  • 多个学生,对应一个老师

  • 对于学生而言,关联 多个学生,关联一个老师【多对一】

  • 对于老师而言,集合 一个老师,对应多个学生【一对多】

    image-20210203185928498

create table `teacher` (
    `id` int(10) not null ,
    `name` varchar(30) default null,
    primary key (`id`)
)engine=innodb default charset utf8;
insert into teacher(`id`,`name`) values (1,'阮老师');
create table `student` (
    `id` int(10) not null ,
    `name` varchar(30) default null,
    `tid` int(10) default null,
    primary key (`id`),
    key `fktid` (`tid`),
    constraint `fktid` foreign key (`tid`) references `teacher` (`id`)
)engine =innodb default charset =utf8;
insert into `student` (`id`,`name`,`tid`) values ('1','老大','1');
insert into `student` (`id`,`name`,`tid`) values ('2','老二','1');
insert into `student` (`id`,`name`,`tid`) values ('3','老三','1');
insert into `student` (`id`,`name`,`tid`) values ('4','老四','1');
insert into `student` (`id`,`name`,`tid`) values ('5','小五','1');

测试环境搭建

  1. 导入lombok
  2. 新建实体类Teacher,Student
  3. 建立Mapper接口
  4. 建立Mapper.xml文件
  5. 在核心配置文件中绑定注册Mapper接口或文件
  6. 测试查询是否成功

按照查询嵌套处理

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--核心配置文件-->
<mapper namespace="com.zwq.dao.StudentMapper">
    <!--
    1.查询所有学生信息
    2.根据查询出来的学生的tid,寻找对应老师
    -->
<select id="getStudent" resultMap="StudentTeacher">
    select * from student
</select>
    <resultMap id="StudentTeacher" type="Student">
        <result property="id" column="id"/>
        <result property="name" column="name"/>
        <!--复杂属性需要单独处理
        对象:association
        集合 collection
        -->
        <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>

    </resultMap>
    <select id="getTeacher" resultType="Teacher">
    select * from teacher where id = #{id}
</select>
</mapper>

按照结果嵌套处理

<select id="getStudent2" resultMap="StudentTeacher2">
    select s.id sid, s.name sname, t.name tname from student s,teacher t where s.tid=t.id;
</select>
    <resultMap id="StudentTeacher2" type="Student">
        <result property="id" column="sid"/>
        <result property="name" column="sname"/>
        <association property="teacher" javaType="Teacher">
        <result property="name" column="tname"/>
        </association>
    </resultMap>

上述两种查询方式类似于mysql的查询方式

  • 子查询
  • 联表查询

11.一对多处理

环境搭建

例如:一个老师对应多个学生,对于老师来说,就是一对多的关系

学生实体类

@Data
public class Student {
    private int id;
    private String name;
    private int tid;
}

老师实体类

@Data
public class Teacher {
    private int id;
    private String name;
    //一个老师拥有多个学生
    private List<Student> studentList;
}

按照结果嵌套处理

   <resultMap id="StudentTeacher" type="Teacher">
        <result property="id" column="tid"/>
        <result property="name" column="tname"/>
        <!--复杂属性需要单独处理,对象association 集合:collection
        javaType="" 指定属性类型
        集合中的泛型信息,需要使用ofType获取
        -->
        <collection property="students" javaType="ArrayList" ofType="Student">
            <result property="id" column="sid"/>
            <result property="name" column="sname"/>
            <result property="tid" column="tid"/>
        </collection>
    </resultMap>
    <select id="getTeacher" resultMap="StudentTeacher">
    select s.id sid, s.name sname, t.name tname, t.id tid from student s,teacher t where
s.tid=t.id and t.id=#{tid}
</select>
    
    
   <select id="getTeacher2" resultMap="StudentTeacher2">
        select * from teacher where id = #{tid}
    </select>

按照查询嵌套处理

<resultMap id="StudentTeacher2" type="Teacher">
        <!--此处的javaType对应查询学生类型List-->
        <!--此处id是查询出来的老师id传给下面查询学生的sql语句进行映射-->
    <collection property="students"  ofType="Student" select="getStudentByTeacherId" column="id">

    </collection>
    </resultMap>
    <select id="getStudentByTeacherId" resultType="Student" >
        select * from student where tid = #{tid}
    </select>

小结

  1. 关联-association 【多对一】
  2. 集合-collection 【一对多】
  3. JavaType & ofType
    1. javaType用来指定实体中属性的类型
    2. ofType用来指定映射到List或者集合中的pojo类型,泛型中的约束类型

12.动态SQL

什么是动态SQL:动态SQL就是指根据不同的条件生成不同SQL语句

动态SQL本质上还是SQL,知只是再原SQL基础上执行逻辑代码

动态SQL是一个拼接SQL语句的过程,只要保证SQL语句的正确性,按照SQL格式进行排列组合

动态SQL元素和JSTL 或任何基于类 XML 语言的文本处理器,你对动态 SQL 元素可能会感觉似曾相识。在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。

if
choose (when, otherwise)
trim (where, set)
foreach

12.1搭建环境

create table `blog`(
    `id` varchar(50) not null comment '博客id',
    `title` varchar(100) not null comment '博客标题',
    `author` varchar(30) not null comment '博客作者',
    `create_time` datetime not null comment '创建时间',
    `views` int(30) not null comment '浏览量'
)engine =innodb default charset utf8

工程项目

  1. 导包

  2. 编写配置文件

  3. 编写实体类

    @Data
    public class blog {
        private  int id;
        private String title;
        private String author;
        private Date createTime;
        private int views;
    }
    
    
  4. 编写实体类对应Mapper接口和Mapper.xml

12.2IF

    <select id="queryBlogIF" parameterType="map" resultType="Blog">
        select * from blog where 1=1
<if test="title != null">
    and title=#{title}
</if>
<if test="author !=null">
    and author=#{author}
</if>
    </select>

12.3choose、when、otherwise

<select id="queryBlogChoose" parameterType="map" resultType="Blog">
    select * from blog
<where>
<choose>
    <when test="title != null">
        title=#{title}
    </when>
    <when test="author != null">
       and author=#{author}
    </when>
    <otherwise>
        and views=#{views}
    </otherwise>
</choose>
</where>
    </select>

12.3trim、where、set

where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。**

   <where>
            <if test="title != null">
                and title=#{title}
            </if>
            <if test="author !=null">
                and author=#{author}
            </if>
        </where>

12.4foreach

image-20210205165202184

  <update id="updateBlog" parameterType="map" >
       update blog
<set>
    <if test="title != null">
title=#{title},
    </if>
<if test="author != null">
    author=#{author},
</if>
</set>
where id=#{id}
    </update>

    <select id="queryBlogForeach" parameterType="map" resultType="Blog">
        select * from blog
<where>
    <foreach collection="ids" item="id" open="and (" separator="or" close=")">
        id=#{id}
    </foreach>
</where>
    </select>

12.5SQL片段

  1. 使用SQL标签抽取公共部分

     <sql id="if-title-author">
            <if test="title != null">
                and title=#{title}
            </if>
            <if test="author !=null">
                and author=#{author}
            </if>
        </sql>
    
  2. 在需要使用的地方使用include标签进行引用

        <select id="queryBlogIF" parameterType="map" resultType="Blog">
            select * from blog
            <where>
            <include refid="if-title-author"></include>
            </where>
    
        </select>
    

注意:

  • 最好基于单表来定义SQL标签
  • 不要存在where标签

13.缓存

13.1简介

所谓缓存就是在查询数据库的过程中,将查询结果暂时的存放在一个可以直接取到的地方———》内存,当进行再次查询数据的过程中无需重新访问数据库,而是将数据直接从缓存中取出来,减少与数据库的交互

  1. 什么是缓存

    • 存放在内存中的临时数据
    • 将用户经常查询的数据放在缓存中,用户查询数据时无需从磁盘(关系型数据库数据文件)查询,从缓存中查询,提高查询效率,解决高并发系统的性能问题
  2. 为什么使用缓存?

    • 减少和数据库交互次数,减少系统开销,提高系统效率
  3. 什么样的数据能使用缓存?

    • 经常查询且不经常改变的数据

13.2Mybatis缓存

  • Mybatis系统默认定义了两级缓存:一级缓存二级缓存

    • 默认情况只有一级缓存开启(Sqlsession级别的缓存,也称为本地缓存)
    • 二级缓存需要手动开启配置,它是基于namespace级别的缓存
    • 为了提高扩展性,Mybatis定义了缓存接口,可以通过实现Cache接口来自定义二级缓存

13.3一级缓存

  • 一级缓存也叫做本地缓存:
    • 与数据库同一次会话期间查询存到的数据会放在本地缓存中
    • 若之后需要获取相同数据,直接从缓存中拿,无需查询数据库

测试步骤:

  1. 开启日志!

  2. 测试在一个Session中查询两次相同记录

  3. 查看日志输出

     @Test
        public void queryUserById()
        {
            SqlSession sqlSession=MybatisUtils.getSqlSession();
            UserMapper mapper=sqlSession.getMapper(UserMapper.class);
            User user= mapper.queryUserById(1);
            System.out.println(user);
            User user1=mapper.queryUserById(1);
            System.out.println(user1);
            System.out.println(user==user1);
        }
    

    image-20210205185655595

缓存失效的情况:

  1. 查询不同的东西

  2. 删改操作,可能会改变原始数据,所以会刷新缓存

  3. 查询不同的Mapper.xml

  4. 手动清理缓存

     sqlSession.clearCache();
    

一级缓存默认开启,只在一次Sqlsession中有效,即开启数据库连接到关闭连接

13.4二级缓存

  • 二级缓存也叫全局缓存,一级缓存作用域低,因此产生二级缓存
  • 基于namespace级别的缓存,一个名称空间,对应一个二级缓存
  • 工作机制
    • 一个会话查询一条数据,这个数据就会被放置在当前会话的一级缓存中;
    • 如果当前会话关闭,会话的一级缓存也随之消失,二级缓存实现的是一级缓存关闭之后,一级缓存中的数据会被保存到二级缓存中;
    • 新的会话查询信息,就可以从二级缓存中获取内容
    • 不同的Mapper查出的数据会放在自己对应的缓存(map)中

步骤:

  1. 开启全局缓存

    <!--显示的开启全局缓存-->
            <setting name="cacheEnabled" value="true "/>
    
  2. 在要使用的二级缓存的Mapper中开启

     <!--在当前Mapper.xml中使用二级缓存-->
    <cache/>
    

    也可以自定义参数

    <!--在当前Mapper.xml中使用二级缓存-->
        <cache eviction="FIFO"
        flushInterval="60000"
        size="512"
        readOnly="true"/>
    <!--这个更高级的配置创建了一个 FIFO 缓存,每隔 60 秒刷新,最多可以存储结果对象或列表的 512 个引用,而且返回的对象被认为是只读的,因此对它们进行修改可能会在不同线程中的调用者产生冲突。-->
    
  3. 测试

    @Test
    public void testQueryUserById(){
       SqlSession session = MybatisUtils.getSession();
       SqlSession session2 = MybatisUtils.getSession();
    
       UserMapper mapper = session.getMapper(UserMapper.class);
       UserMapper mapper2 = session2.getMapper(UserMapper.class);
    
       User user = mapper.queryUserById(1);
       System.out.println(user);
       session.close();
    
       User user2 = mapper2.queryUserById(1);
       System.out.println(user2);
       System.out.println(user==user2);
    
       session2.close();
    }
    

小结:

  • 只要开启了二级缓存,在同一个Mapper下就有效
  • 所有的数据都会先放在一级缓存中;只有会话提交或关闭才会提交到二级缓存中

13.5缓存原理

img

13.6自定义缓存-ehcache

Ehcache是一种广泛使用的开源Java分布式缓存,主要面向通用缓存

第三方缓存实现--EhCache: 查看百度百科

Ehcache是一种广泛使用的java分布式缓存,用于通用缓存;

要在应用程序中使用Ehcache,需要引入依赖的jar包

<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache -->
<dependency>
   <groupId>org.mybatis.caches</groupId>
   <artifactId>mybatis-ehcache</artifactId>
   <version>1.1.0</version>
</dependency>

在mapper.xml中使用对应的缓存即可

<mapper namespace = “org.acme.FooMapper” >
   <cache type = “org.mybatis.caches.ehcache.EhcacheCache” />
</mapper>

编写ehcache.xml文件,如果在加载时未找到/ehcache.xml资源或出现问题,则将使用默认配置。

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
        updateCheck="false">
   <!--
      diskStore:为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下:
      user.home – 用户主目录
      user.dir – 用户当前工作目录
      java.io.tmpdir – 默认临时文件路径
    -->
   <diskStore path="./tmpdir/Tmp_EhCache"/>
   
   <defaultCache
           eternal="false"
           maxElementsInMemory="10000"
           overflowToDisk="false"
           diskPersistent="false"
           timeToIdleSeconds="1800"
           timeToLiveSeconds="259200"
           memoryStoreEvictionPolicy="LRU"/>

   <cache
           name="cloud_user"
           eternal="false"
           maxElementsInMemory="5000"
           overflowToDisk="false"
           diskPersistent="false"
           timeToIdleSeconds="1800"
           timeToLiveSeconds="1800"
           memoryStoreEvictionPolicy="LRU"/>
   <!--
      defaultCache:默认缓存策略,当ehcache找不到定义的缓存时,则使用这个缓存策略。只能定义一个。
    -->
   <!--
     name:缓存名称。
     maxElementsInMemory:缓存最大数目
     maxElementsOnDisk:硬盘最大缓存个数。
     eternal:对象是否永久有效,一但设置了,timeout将不起作用。
     overflowToDisk:是否保存到磁盘,当系统当机时
     timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
     timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
     diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
     diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
     diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
     memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
     clearOnFlush:内存数量最大时是否清除。
     memoryStoreEvictionPolicy:可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。
     FIFO,first in first out,这个是大家最熟的,先进先出。
     LFU, Less Frequently Used,就是上面例子中使用的策略,直白一点就是讲一直以来最少被使用的。如上面所讲,缓存的元素有一个hit属性,hit值最小的将会被清出缓存。
     LRU,Least Recently Used,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。
  -->

</ehcache>```

推荐阅读