Mybatis核心知识点总结

MyBatis

1、简介

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。

1.1 获取Mybatis

  • GitHub:https://github.com/mybatis/mybatis-3/releases
  • 文档:https://mybatis.org/mybatis-3/zh/index.html
  • Maven仓库:https://mvnrepository.com/artifact/org.mybatis/mybatis

1.2 持久化

数据持久化

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

持久化的原因:

  • 有一些对象不能丢掉

  • 内存成本大

1.3 持久层

Dao层,Service层,Controller层…

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

1.4 Why MyBatis?

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

  • 方便

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

  • 不用Mybatis也可以,只是Mybatis更容易上手。

  • 特点:

    • 简单易学:本身就很小且简单。没有任何第三方依赖,最简单安装只要两个jar文件+配置几个sql映射文件易于学习,易于使用,通过文档和源代码,可以比较完全的掌握它的设计思路和实现。
    • 灵活:mybatis不会对应用程序或者数据库的现有设计强加任何影响。 sql写在xml里,便于统一管理和优化。通过sql语句可以满足操作数据库的所有需求。
    • 解除sql与程序代码的耦合:通过提供DAO层,将业务逻辑和数据访问逻辑分离,使系统的设计更清晰,更易维护,更易单元测试。sql和代码的分离,提高了可维护性。
    • 提供映射标签,支持对象与数据库的orm字段关系映射
    • 提供对象关系映射标签,支持对象关系组建维护
    • 提供xml标签,支持编写动态sql。

    最重要的一点:使用的人多。

2、第一个Mybatis程序

搭建环境->导入Mybatis->编写代码->测试

2.1 搭建环境

搭建数据库

CREATE TABLE `user` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) NOT NULL,
  `pwd` varchar(30) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

新建项目

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

  2. 删除src目录

  3. 导入Maven依赖

    
        <dependencies>
    
    
    
            <dependency>
                <groupId>mysqlgroupId>
                <artifactId>mysql-connector-javaartifactId>
                <version>5.1.49version>
            dependency>
    
            <dependency>
                <groupId>org.mybatisgroupId>
                <artifactId>mybatisartifactId>
                <version>3.5.3version>
            dependency>
            <dependency>
                <groupId>junitgroupId>
                <artifactId>junitartifactId>
                <version>4.12version>
            dependency>
        dependencies>
    

2.2 创建一个模块

  • 编写Mybatis核心配置文件

    
    
    <configuration>
        <environments default="development">
            <environment id="development">
                <transactionManager type="JDBC"/>
                <dataSource type="POOLED">
                    <property name="driver" value="com.mysql.jdbc.Driver"/>
                    <property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
                    <property name="username" value="root"/>
                    <property name="password" value="200161"/>
                dataSource>
            environment>
        environments>
        <mappers>
            <mapper resource="org/mybatis/example/BlogMapper.xml"/>
        mappers>
    configuration>
    
  • 编写Mybatis工具类

    package com.abin.utils;
    
    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 java.io.IOException;
    import java.io.InputStream;
    
    /**
     * Author: abin
     * Date: 2021-03-07
     * Description:Mybatis工具类
     */
    public class MybatisUtils {
        private static SqlSessionFactory sqlSessionFactory;
        static {
            try {
                //使用Mybatis第一步获取SqlSessionFactory对象
                String resource = "mybatis-config.xml";
                InputStream inputStream = Resources.getResourceAsStream(resource);
                SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
        /*
        有了 SqlSessionFactory,顾名思义,我们可以从中获得 SqlSession 的实例。SqlSession 提供了在
        数据库执行 SQL 命令所需的所有方法。你可以通
        过 SqlSession 实例来直接执行已映射的 SQL 语句
         */
        public static SqlSession getSqlSession(){
            return sqlSessionFactory.openSession();
        }
    }
    
    

2.3 编写代码

  • 实体类

    package com.abin.pojo;
    
    /**
     * Author: abin
     * Date: 2021-03-07
     * Description:
     */
    public class User {
        private int id;
        private String name;
        private String pwd;
    
        public User() {
        }
    
        public User(int id, String name, String pwd) {
            this.id = id;
            this.name = name;
            this.pwd = 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;
        }
    }
    
    
  • Dao接口

    package com.abin.Dao;
    
    import com.abin.pojo.User;
    
    import java.util.List;
    
    /**
     * Author: abin
     * Date: 2021-03-07
     * Description:
     */
    public interface UserMapper {
        List<User> getUserList();
    }
    
    
  • 接口实现类由原来的Impl转换为一个Mapper配置文件

    
    
    
    
    <mapper namespace="com.abin.Dao.UserMapper">
    
        <select id="getUserList" resultType="com.abin.pojo.User">
            select * from mybatis.user
        select>
    
    mapper>
    

2.4 测试

maven由于他的约定大于配置,我们之后可能遇到我们没写在resources目录中的配置文件无法导出或生效的问题,解决方案:


    <build>
        <resources>
            <resource>
                <directory>src/main/resourcesdirectory>
                <includes>
                    <include>**/*.propertiesinclude>
                    <include>**/*.xmlinclude>
                includes>
                <filtering>truefiltering>
            resource>
            <resource>
                <directory>src/main/javadirectory>
                <includes>
                    <include>**/*.propertiesinclude>
                    <include>**/*.xmlinclude>
                includes>
                <filtering>truefiltering>
            resource>
        resources>
    build>

不过最好还是把资源文件放在resources文件夹中

注意:

如果遇到org.apache.ibatis.binding.BindingException: Type interface com.abin.Dao.UserMapper is not known to the MapperRegistry.错误

证明核心配置文件中没有注册mappers

需要在核心配置文件中注册每个mapper


    <mappers>
        <mapper resource="com/abin/Dao/UserMapper.xml"/>
    mappers>
  • Junit测试

    public class UserDaoTest {
    
        @Test
        public void test(){
            //第一步获取SQLSession对象
            SqlSession sqlSession = MybatisUtils.getSqlSession();
            //执行Sql 方式一:getMapper
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
            List<User> userList = userMapper.getUserList();
            for (User user : userList) {
                System.out.println(user);
            }
            
            /*
            //方式二:不推荐
            List userList1 = sqlSession.selectList("com.abin.UserMapper.getUserList");
            for (User user : userList1) {
                System.out.println(user);
            }
            */
        }
    }
    

面试知识:

提示 对象生命周期和依赖注入框架

依赖注入框架可以创建线程安全的、基于事务的 SqlSession 和映射器,并将它们直接注入到你的 bean 中,因此可以直接忽略它们的生命周期。 如果对如何通过依赖注入框架使用 MyBatis 感兴趣,可以研究一下 MyBatis-Spring 或 MyBatis-Guice 两个子项目。


SqlSessionFactoryBuilder

这个类可以被实例化、使用和丢弃,一旦创建了 SqlSessionFactory,就不再需要它了。 因此 SqlSessionFactoryBuilder 实例的最佳作用域是方法作用域(也就是局部方法变量)。 你可以重用 SqlSessionFactoryBuilder 来创建多个 SqlSessionFactory 实例,但最好还是不要一直保留着它,以保证所有的 XML 解析资源可以被释放给更重要的事情。

SqlSessionFactory

SqlSessionFactory 一旦被创建就应该在应用的运行期间一直存在,没有任何理由丢弃它或重新创建另一个实例。 使用 SqlSessionFactory 的最佳实践是在应用运行期间不要重复创建多次,多次重建 SqlSessionFactory 被视为一种代码“坏习惯”。因此 SqlSessionFactory 的最佳作用域是应用作用域。 有很多方法可以做到,最简单的就是使用单例模式或者静态单例模式。

SqlSession

每个线程都应该有它自己的 SqlSession 实例。SqlSession 的实例不是线程安全的,因此是不能被共享的,所以它的最佳的作用域是请求或方法作用域。 绝对不能将 SqlSession 实例的引用放在一个类的静态域,甚至一个类的实例变量也不行。 也绝不能将 SqlSession 实例的引用放在任何类型的托管作用域中,比如 Servlet 框架中的 HttpSession。 如果你现在正在使用一种 Web 框架,考虑将 SqlSession 放在一个和 HTTP 请求相似的作用域中。 换句话说,每次收到 HTTP 请求,就可以打开一个 SqlSession,返回一个响应后,就关闭它。 这个关闭操作很重要,为了确保每次都能执行关闭操作,你应该把这个关闭操作放到 finally 块中。

3、CRUD

1. namespace

namespace中的包名要和Mapper接口的包名保持一致

2. select

选择,查询语句

<select id="getUserList" resultType="com.abin.pojo.User">
        select * from mybatis.user
    select>
  • id:就是对应的namespace中的方法名;
  • resultType:sql语句执行的返回值
  • parameterType
  1. 编写接口

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

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

3.insert


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

4.update

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

5.delete

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

注意:

增删改需要提交事务

增删改需要提交事务

增删改需要提交事务

6.错误分析

  • 标签匹配

  • resource绑定mapper,需要使用路径,如com/abin/pojo/UserMapper

  • Maven资源没有导出问题,解决方案寻上

    
        <build>
            <resources>
                <resource>
                    <directory>src/main/resourcesdirectory>
                    <includes>
                        <include>**/*.propertiesinclude>
                        <include>**/*.xmlinclude>
                    includes>
                    <filtering>truefiltering>
                resource>
                <resource>
                    <directory>src/main/javadirectory>
                    <includes>
                        <include>**/*.propertiesinclude>
                        <include>**/*.xmlinclude>
                    includes>
                    <filtering>truefiltering>
                resource>
            resources>
        build>
    

7.万能Map

假设我们的实体类或数据库中的表,字段或者参数过多,我们应当考虑使用Map

/**
     * 万能map
     * @param map
     * @return
     */
    int addUser2(Map<String,Object> map);


    <insert id="addUser2" parameterType="map">
insert into mybatis.user(id,name,pwd) values (#{userid},#{name},#{password})

    insert>
    @Test
    public void addUser2(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

        Map<String ,Object> map = new HashMap<String, Object>();
        map.put("userid",9);
        map.put("name","test");
        map.put("password","1321");

        int res = userMapper.addUser2(map);
		sqlSession.commit();
        
    }

Map传递参数,直接在Sql中取出key即可【parameterType=“map”】

对象传递参数,直接在Sql中取对象的属性即可【parameterType=“com.abin.pojo.User”】

只有一个基本类型参数的情况下,可以直接在Sql中取到

多个参数用Map,或者注解!

8.模糊查询

  1. Java代码执行的时候,传递通配符% %

    /**
         * 模糊查询
         * @return
         */
        List<User> getUserLike(String value);
    
    <select id="getUserLike" resultType="com.abin.pojo.User">
            select *from mybatis.user where name like #{value}
        select>
    
        @Test
        public void getUserLike(){
            SqlSession sqlSession = MybatisUtils.getSqlSession();
    
            UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
    
            List<User> userLike = userMapper.getUserLike("%李%");
    
            for (User user : userLike) {
                System.out.println(user);
            }
        }
    
    User{id=9, name='李文斌', pwd='adsa'}
    User{id=10, name='李阿萨', pwd='asdaf'}
    
    Process finished with exit code 0
    
  2. 在Sql拼接中使用通配符!防止SQL注入

    <select id="getUserLike" resultType="com.abin.pojo.User">
            select *from mybatis.user where name like "%"#{value}"%"
        select>
    

4、配置解析

1.核心配置文件

  • mybatis-config.xml

    MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。 配置文档的顶层结构如下:

    在核心配置文件中使用下面的标签要采用下面这种先后顺序

    configuration(配置)

    • properties(属性)
    • settings(设置)
    • typeAliases(类型别名)
    • typeHandlers(类型处理器)
    • objectFactory(对象工厂)
    • plugins(插件)
    • environments(环境配置)
      • environment(环境变量)
        • transactionManager(事务管理器)
        • dataSource(数据源)
    • databaseIdProvider(数据库厂商标识)
    • mappers(映射器)

2.环境配置(environments)

MyBatis 可以配置成适应多种环境,这种机制有助于将 SQL 映射应用于多种数据库之中, 现实情况下有多种理由需要这么做。例如,开发、测试和生产环境需要有不同的配置;或者想在具有相同 Schema 的多个生产数据库中使用相同的 SQL 映射。还有许多类似的使用场景。

不过要记住:尽管可以配置多个环境,但每个 SqlSessionFactory 实例只能选择一种环境。

Mybatis默认的事务管理器就是JDBC,连接池:POOLED

3.属性(properties)

我们可以通过properties属性来实现引用配置文件

这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置。【db.properties…】

编写一个配置文件

db.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?useSSL=false&useUnicode=true&characterEncoding=UTF-8
username=root
password=200161

在核心配置文件中引入

<properties resource="db.properties"/>

或者


    <properties resource="db.properties">
        <property name="username" value="root"/>
        <property name="password" value="200161"/>
    properties>
  • 可以直接引入外部文件

  • 可以在其中增加一些属性字段

  • 如果两个文件有同一字段,如下情况

    
        <properties resource="db.properties">
            <property name="username" value="root"/>
            <property name="password" value="200161"/>
        properties>
    

    则优先使用该配置

4.类型别名(typeAliases)

类型别名可为 Java 类型设置一个缩写名字。 它仅用于 XML 配置,意在降低冗余的全限定类名书写。例如:

<typeAliases>
  <typeAlias alias="Author" type="domain.blog.Author"/>
  <typeAlias alias="Blog" type="domain.blog.Blog"/>
  <typeAlias alias="Comment" type="domain.blog.Comment"/>
  <typeAlias alias="Post" type="domain.blog.Post"/>
  <typeAlias alias="Section" type="domain.blog.Section"/>
  <typeAlias alias="Tag" type="domain.blog.Tag"/>
typeAliases>

    <typeAliases>
        <typeAlias type="com.abin.pojo.User" alias="User"/>
    typeAliases>

也可以指定一个包名,MyBatis 会在包名下面搜索需要的 Java Bean,比如:

<typeAliases>
  <package name="domain.blog"/>
typeAliases>

每一个在包 domain.blog 中的 Java Bean,在没有注解的情况下,会使用 Bean 的首字母小写的非限定类名来作为它的别名。 比如 domain.blog.Author 的别名为 author;若有注解,则别名为其注解值。见下面的例子:

@Alias("author")
public class Author {
    ...
}

实体类少的时候,使用第一种方式

实体类十分多时,使用第二种方式

第一种可以自定义别名,第二种可以通过注解自定义别名

5.设置(settings)

设置名 描述 有效值 默认值
cacheEnabled 全局性地开启或关闭所有映射器配置文件中已配置的任何缓存。 true | false true
lazyLoadingEnabled(懒加载) 延迟加载的全局开关。当开启时,所有关联对象都会延迟加载。 特定关联关系中可通过设置 fetchType 属性来覆盖该项的开关状态。 true | false false
logImpl 指定 MyBatis 所用日志的具体实现,未指定时将自动查找。 SLF4J | LOG4J | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGING 未设置

6.其他配置

  • typeHandlers(类型处理器)
  • objectFactory(对象工厂)
  • plugins(插件)
    • MybatisPlus
    • mybatis-generator-core 自动生成Mybatis 代码(包括CRUD)
    • 通用mapper

7.映射器(mappers)

MapperRegisty:注册绑定我们的Mapper对应的xml文件

方式一:


    <mappers>
        <mapper resource="com/abin/dao/UserMapper.xml"/>
    mappers>

方式二:


<mappers>
  <mapper class="org.mybatis.builder.AuthorMapper"/>
  <mapper class="org.mybatis.builder.BlogMapper"/>
  <mapper class="org.mybatis.builder.PostMapper"/>
mappers>

注意点:

  • 接口和他的Mapper配置文件必须同名

  • 接口和他的Mapper配置文件必须在同一包下

方式三:使用扫描包进行注入绑定


<mappers>
  <package name="com.abin.dao"/>
mappers>

8.生命周期和作用域

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

SqlSessionFactoryBuilder

  • 一旦创建了SqlSessionFactory,就不再需要它了

  • 放在局部变量即可

SqlSessionFactory

  • 可以想象为数据库连接池
  • 一旦被创建就应该在应用的运行期间一直存在,没有任何理由丢弃它或重新创建另一个实例。
  • 因此 SqlSessionFactory 的最佳作用域是应用作用域。
  • 最简单的就是使用单例模式或者静态单例模式。

SqlSession

  • 想象成连接到连接池的一个请求
  • 每个线程都应该有它自己的 SqlSession 实例
  • SqlSession 的实例不是线程安全的,因此是不能被共享的,所以它的最佳的作用域是请求或方法作用域。
  • 用完之后就关闭,否则资源被占用
    Mybatis核心知识点总结_第1张图片

这里的每一个Mapper,就代表一个具体的业务

5、解决属性名和字段名不一致的问题

1.问题

数据库中的字段

Mybatis核心知识点总结_第2张图片

新建一个项目,拷贝之前的,测试实体类字段不一致的情况

	private int id;
    private String name;
    private String password;

测试出现问题

输出

User{id=1, name='abin', password='null'}

Process finished with exit code 0

问题原因:

//select *from mybatis.user where id=#{id}
//类型处理器
上面的SQL实际含义为
select id,name,pwd from mybatis.user where id = #{id}

解决方案:

  • 起别名

     <select id="getUserById" resultType="com.abin.pojo.User" parameterType="int">
            select id,name,pwd as password from mybatis.user where id = #{id}
        select>
    

2.resultMap

结果集映射

数据库字段:id name pwd
实体类:id name password

    <resultMap id="UserMap" type="User">

        <result column="id" property="id"/>
        <result column="name" property="name"/>
        <result column="pwd" property="password"/>
    resultMap>
  <select id="getUserById" resultMap="UserMap">
      select *from mybatis.user where id=#{id}
  select>
  • resultMap 元素是 MyBatis 中最重要最强大的元素。

  • ResultMap 的设计思想是,对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了。

  • ResultMap 的优秀之处——你完全可以不用显式地配置它们。

    所以上面的映射可以直接写成下面这样

        <resultMap id="UserMap" type="User">
    
            <result column="pwd" property="password"/> //哪个不一样,就映射哪个
        resultMap>
    
  • 如果这个世界总是这么简单就好了。。。

6、日志

1.日志工厂

如果一个数据库操作,出现了异常,我们需要拍错。日志就是最好的助手

曾经:sout,debug

现在:日志工厂

  • SLF4J
  • LOG4J 【掌握】
  • LOG4J2
  • JDK_LOGGING
  • COMMONS_LOGGING
  • STDOUT_LOGGING 【掌握】
  • NO_LOGGING

在Mybatis中具体使用哪一个日志实现,在设置中配置~

STDOUT_LOGGING

在Mybatis核心配置文件中,配置我们的日志~

注意setting的位置在properties和typeAliases之间

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

Mybatis核心知识点总结_第3张图片

2.Log4J

简介:

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

使用:

  1. 导入log4j的包

    
    <dependency>
        <groupId>log4jgroupId>
        <artifactId>log4jartifactId>
        <version>1.2.17version>
    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 = [%-5p] %d{yyyy-MM-dd HH:mm:ss,SSS} method:%l%n%m%n
    
    ### 文件输出的相关设置
    log4j.appender.file = org.apache.log4j.RollingFileAppender
    log4j.appender.file.File = ./log/abin.log
    log4j.appender.file.MaxFileSize = 10mb
    log4j.appender.file.Threshold = debug
    log4j.appender.file.layout = org.apache.log4j.PatternLayout
    log4j.appender.file.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss}  [ %t:%r ] - [ %p ]  %m%n
    
    ###日志输出级别 ###
    log4j.logger.org.mybatis = debug
    log4j.logger.java.sql = debug
    log4j.logger.java.Statement = debug
    log4j.logger.java.ResultSet = debug
    log4j.logger.java.PreparedStatement = debug
    
  3. 在核心配置文件中配置log4j为日志的实现

        <settings>
            <setting name="logImpl" value="LOG4J"/>
        settings>
    
  4. Log4j的使用

Mybatis核心知识点总结_第4张图片

简单使用

  1. 在要使用Log4j的类中,导入包import org.apache.log4j.Logger 这里注意导包不要导错!

  2. 获取日志对象,参数为当前类的class

     static Logger logger = Logger.getLogger(Log4jTest.class);
    
  3. 日志级别

    logger.info("info:进入了testLog4j");
    logger.debug("debug:进入了testLog4j");
    logger.error("error:进入了testLog4j");
    
    2021-03-11 18:08:51  [ main:0 ] - [ INFO ]  info:进入了testLog4j
    2021-03-11 18:08:51  [ main:4 ] - [ DEBUG ]  debug:进入了testLog4j
    2021-03-11 18:08:51  [ main:4 ] - [ ERROR ]  error:进入了testLog4j
    

7、分页

分页原因

  • 减少数据的处理量

1.使用Limit分页

SELECT * FROM user limit startIndex,pageSize;

# startIndex:开始位置,0开始
# pageSize:查询数量

SELECT * FROM user limit pageSize; # 从0开始,查pageSize个

使用Mybatis实现分页,核心:SQL

  1. 接口

    /**
     * 分页
     */
    List<User> getUserByLimit(Map<String,Integer> map);
    
  2. Mapper.xml

    
        <select id="getUserByLimit" parameterType="map" resultMap="UserMap">
            select *from mybatis.user limit #{startIndex},#{pageSize}
        select>
    
  3. 测试

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

2.RowBounds分页

不再使用SQL实现分页

  1. 接口

    /**
     * RowBounds分页
     */
    List<User> getUserByRowBounds();
    
  2. mapper.xml

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

    @Test
    public void getUserByRowBounds(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
    
        //RowBounds实现
        RowBounds rowBounds = new RowBounds(1,2);
    
        //通过java代码层面实现分类
        List<User> list = sqlSession.selectList("com.abin.dao.UserMapper.getUserByRowBounds",null,rowBounds);
        for (User user : list) {
            System.out.println(user);
        }
    }
    

3.分页插件

Mybatis核心知识点总结_第5张图片

了解即可…

8、使用注解开发

注解只适用于简单的SQL

  1. 注解在接口上实现

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

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

本质:反射机制实现

底层:动态代理

Mybatis执行流程(面试知识)

Mybatis核心知识点总结_第6张图片

CRUD

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

 public static SqlSession getSqlSession(){
        return sqlSessionFactory.openSession(true);//这里传递参数true,会使事务自动开启
    }

接口:

public interface UserMapper {

    @Select("select *from user")
    List<User> getUsers();

    //若方法存在多个参数,所有的参数前面必须加上@Param注解
    @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);
}

测试:


 @Test
    public void getUsers(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        //底层主要应用反射
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
        User user = userMapper.getUserById(1);
        System.out.println(user);
        sqlSession.close();
    }

注意:我们要将接口注册绑定到我们的核心配置文件中!

关于@Param()注解

  • 基本类型的参数或者String类型,都要加上
  • 引用类型不需要加
  • 如果只有一个基本类型的话,原则上可以不加,但还是建议加上

#{}与${}的区别

  • #{}预编译,防止SQL注入
  • ${},存在SQL注入

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.

  • 省去写Setter、Getter、toString…
  • 通过注解实现,编译时会自动生辰Setter、Getter、toString…

使用:

  1. 在IDEA中安装Lombok插件

  2. 引入maven依赖

            
            <dependency>
                <groupId>org.projectlombokgroupId>
                <artifactId>lombokartifactId>
                <version>1.18.16version>
            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
@AllArgsConstructor:全参构造
@NoArgsConstructor:无参构造
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
    private int id;
    private String name;
    private String password;
}

10、多对一处理

例如:学生与老师的关系

Mybatis核心知识点总结_第7张图片

  • 多个学生对应一个老师
  • 对于学生而言,**(关联)**多个学生,关联一个老师(多对一)
  • 对于老师而言,(集合) 一个老师,有很多学生(一对多)

SQL

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, 'abin'); 

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');

ER关系

Mybatis核心知识点总结_第8张图片

测试环境搭建

  1. 导入Lombok

    
    <dependency>
        <groupId>org.projectlombokgroupId>
        <artifactId>lombokartifactId>
        <version>1.18.16version>
    dependency>
    
  2. 新建实体类Teacher,Student

    @Data
    public class Teacher {
        private int id;
        private String name;
    }
    
    @Data
    public class Student {
        private int id;
        private String name;
    
        //学生需要关联一个老师
        private Teacher teacher;
    }
    
  3. 建立Mapper接口

    public interface TeacherMapper {
    
        /*这里的简单SQL使用注解方式实现*/
        @Select("select *from teacher where id = #{tid}")
        Teacher getTeacher(@Param("tid") int id);
    }
    
  4. 建立Mapper.xml文件(如果只是使用了简单SQL语句,可以不使用xml配置文件)

    另外注意,在resources文件夹中建立包的时候,要一级一级的建,如com.abin.dao,要一个包一个包的创建,因为resources文件夹中的包不会自动展开

Mybatis核心知识点总结_第9张图片





<mapper namespace="com.abin.dao.TeacherMapper">

mapper>




<mapper namespace="com.abin.dao.StudentMapper">

mapper>
  1. 在核心配置文件中注册Mapper接口(若使用注解方式,则需要注册接口

    由于mapper中使用注解的方式实现SQL,所以这里直接注册接口class,也可以使用扫描包的方式。

    <mappers>
        <mapper class="com.abin.dao.TeacherMapper"/>
        <mapper class="com.abin.dao.StudentMapper"/>
    mappers>
    
  2. 测试

    @Test
    public void  getTeacher(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        TeacherMapper teacherMapper = sqlSession.getMapper(TeacherMapper.class);
        Teacher teacher = teacherMapper.getTeacher(1);
        System.out.println(teacher);
    }
    

按照查询嵌套处理

查询所有的学生信息,以及对应的老师的信息

    <select id="getStudent" resultMap="StudentTeacher">
        select *from student
    select>
    <resultMap id="StudentTeacher" type="com.abin.pojo.Student">
        <result property="id" column="id"/>
        <result property="name" column="name"/>


        <association property="teacher" column="tid" javaType="com.abin.pojo.Teacher" select="getTeacher"/>
    resultMap>

    <select id="getTeacher" resultType="com.abin.pojo.Teacher">
        select *from teacher where id = #{tid}
    select>
@Test
public void getStudent(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    StudentMapper studentMapper = sqlSession.getMapper(StudentMapper.class);
    List<Student> studentList = studentMapper.getStudent();
    for (Student student : studentList) {
        System.out.println(student);
    }
}

按照结果嵌套处理


    <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="com.abin.pojo.Student">
        <result property="id" column="sid"/>
        <result property="name" column="sname"/>
        <association property="teacher" javaType="com.abin.pojo.Teacher">
            <result property="name" column="tname"/>
        association>
    resultMap>

Mybatis核心知识点总结_第10张图片

Mysql多对一查询方式

  • 子查询
  • 联表查询

11、一对多处理

比如:一个老师拥有多个学生

对于老师而言就是一对多的关系

  1. 环境搭建:同前

  2. 新建实体类Student,Teacher

    @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> students;
    }
    

按照结果嵌套处理


    <select id="getTeacher" resultMap="TeacherStudent">
        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>
    <resultMap id="TeacherStudent" type="com.abin.pojo.Teacher">
        <result property="id" column="tid"/>
        <result property="name" column="tname"/>
        
        <collection property="students" ofType="com.abin.pojo.Student">
            <result property="id" column="sid"/>
            <result property="name" column="sname"/>
            <result property="tid" column="tid"/>
        collection>
    resultMap>

按照查询嵌套处理



    <select id="getTeacher2" resultMap="TeacherStudent2">
        select *from teacher where id = #{tid}
    select>
    <resultMap id="TeacherStudent2" type="com.abin.pojo.Teacher">
        <collection property="students" javaType="ArrayList" ofType="com.abin.pojo.Student" select="getStudentByTeacherId" column="id"/>
    resultMap>
    <select id="getStudentByTeacherId" resultMap="com.abin.pojo.Student">
        select *from student where tid = #{id}
    select>

总结:

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

注意:

  • 保证SQL的可读性,尽量保证通俗易懂
  • 注意一对多和多对一,属性名和字段的问题
  • 如果问题不好排查错误,可以使用log4j生成日志

深入理解MySQL,注重SQL调优,尽量避免慢SQL

面试高频:

  • MySQL引擎
  • InnoDB底层原理
  • 索引
  • 索引优化

12、动态SQL

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

你应该能理解根据不同条件拼接 SQL 语句有多痛苦,例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。

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

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

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. 编写实体类Blog

    import lombok.Data;
    
    import java.util.Date;
    
    /**
     * Author: abin
     * Date: 2021-03-13
     * Description:
     */
    
    @Data
    public class Blog {
        private String id;
        private String title;
        private String author;
        private Date createTime;    //属性名和字段名不一致 配置setting mapUnderscoreToCamelCase值为true开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn。
        private int views;
    }
    
    
    
  4. UUID工具类

    import java.util.UUID;
    
    /**
     * Author: abin
     * Date: 2021-03-13
     * Description:获取UUID,随机,且唯一,可用于id设置
     */
    public class IDUtils {
    
        public static String getId(){
            return UUID.randomUUID().toString().replace("-","");
        }
    
    }
    
  5. 编写Mapper和Mapper.xml

    public interface BlogMapper {
    
        //插入数据
        int addBlog(Blog blog);
    }
    
    <insert id="addBlog" parameterType="com.abin.pojo.Blog">
        insert into blog (id,title,author,create_time,views) values (#{id},#{title},#{author},#{createTime},#{views})
    insert>
    

2.IF语句

通过if语句中test参数中的判断,可以实现动态拼接sql语句,省去了Java代码的判断。

  1. Mapper

    //查询博客
        List<Blog> queryBlogIf(Map map);
    
  2. mapper.xml;

    <select id="queryBlogIf" parameterType="map" resultType="com.abin.pojo.Blog">
            select *from mybatis.blog where 1=1
            <if test="title != null">
                and  title = #{title}
            if>
            <if test="author!=null">
                and author = #{author}
            if>
        select>
    

    这里的if语句含义就是,如果传递过来的map中没有title键和author键和对应的值的话,就直接执行select *from mybatis.blog语句将所有信息查出来,如果有title和author限定,就追加上对应的sql语句,where 1=1的作用就是为了使该语句可以追加条件。

  3. 测试

    @Test
    public void queryBlogIf(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        BlogMapper blogMapper = sqlSession.getMapper(BlogMapper.class);
        Map map = new HashMap();
        List<Blog> blogs = blogMapper.queryBlogIf(map);
        for (Blog blog : blogs) {
            System.out.println(blog);
        }
        sqlSession.close();
    }
    

    结果:

Mybatis核心知识点总结_第11张图片

@Test
public void queryBlogIf(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper blogMapper = sqlSession.getMapper(BlogMapper.class);
    Map map = new HashMap();
    map.put("title","Java6666");
    map.put("author","abin");
    List<Blog> blogs = blogMapper.queryBlogIf(map);
    for (Blog blog : blogs) {
        System.out.println(blog);
    }
    sqlSession.close();
}

结果:

在这里插入图片描述

3.choose、when、otherwise

有时候,我们不想使用所有的条件,而只是想从多个条件中选择一个使用。针对这种情况,MyBatis 提供了 choose 元素,它有点像 Java 中的 switch 语句。

<select id="queryBlogChoose" parameterType="map" resultType="com.abin.pojo.Blog">
    select *from mybatis.blog
    <where>
        <choose>
            <when test="title!=null">
                title = #{title}
            when>
            <when test="author != null">
                author = #{author}
            when>
            <otherwise>
                views = #{views}
            otherwise>
        choose>
    where>
select>

测试代码

@Test
public void queryBlogChoose(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper blogMapper = sqlSession.getMapper(BlogMapper.class);
    Map map = new HashMap();
    map.put("title","Java6666");
    //map.put("author","abin");

    List<Blog> blogs = blogMapper.queryBlogChoose(map);
    for (Blog blog : blogs) {
        System.out.println(blog);
    }


    sqlSession.close();
}

运行结果:

Mybatis核心知识点总结_第12张图片

这里查询出了符合title不为空条件的结果,那如果我再将map里put一个author会发生什么情况呢,代码如下

@Test
public void queryBlogChoose(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper blogMapper = sqlSession.getMapper(BlogMapper.class);
    Map map = new HashMap();
    map.put("title","Java6666");
    map.put("author","abin");

    List<Blog> blogs = blogMapper.queryBlogChoose(map);
    for (Blog blog : blogs) {
        System.out.println(blog);
    }


    sqlSession.close();
}

运行结果
Mybatis核心知识点总结_第13张图片

*有运行结果可见,查询结果并没有发生变化,也就是说当第一个when标签里的test条件满足时,就会停止下面的判断,直接返回sql语句为select from mybatis.blog WHERE title = ? ,可以理解为switch中的break机制

4.trim(where,set)

Mybatis文档中这样介绍到:

前面几个例子已经方便地解决了一个臭名昭著的动态 SQL 问题。现在回到之前的 “if” 示例,这次我们将 “state = ‘ACTIVE’” 设置成动态条件,看看会发生什么。

<select id="findActiveBlogLike"
     resultType="Blog">
  SELECT * FROM BLOG
  WHERE
  <if test="state != null">
    state = #{state}
  if>
  <if test="title != null">
    AND title like #{title}
  if>
  <if test="author != null and author.name != null">
    AND author_name like #{author.name}
  if>
select>

如果没有匹配的条件会怎么样?最终这条 SQL 会变成这样:

SELECT * FROM BLOG
WHERE

这会导致查询失败。如果匹配的只是第二个条件又会怎样?这条 SQL 会是这样:

SELECT * FROM BLOG
WHERE
AND title like ‘someTitle’

这个查询也会失败。这个问题不能简单地用条件元素来解决。这个问题是如此的难以解决,以至于解决过的人不会再想碰到这种问题。

MyBatis 有一个简单且适合大多数场景的解决办法。而在其他场景中,可以对其进行自定义以符合需求。而这,只需要一处简单的改动:

<select id="findActiveBlogLike"
     resultType="Blog">
  SELECT * FROM BLOG
  <where>
    <if test="state != null">
         state = #{state}
    if>
    <if test="title != null">
        AND title like #{title}
    if>
    <if test="author != null and author.name != null">
        AND author_name like #{author.name}
    if>
  where>
select>

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

那么上面对应的语句就可以改成

    <select id="queryBlogIf" parameterType="map" resultType="com.abin.pojo.Blog">
        select *from mybatis.blog
        <where>
            <if test="title !=null">
                title=#{title}
            if>
            <if test="author!=null">
                and author = #{author}
            if>
            
        where>
        
    select>

这样就不用再写where 1= 1了。

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

如果 where 元素与你期望的不太一样,你也可以通过自定义 trim 元素来定制 where 元素的功能。比如,和 where 元素等价的自定义 trim 元素为:

<trim prefix="WHERE" prefixOverrides="AND |OR ">
  ...
trim>

set

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

这个例子中,set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的)。

set 元素等价的自定义 trim 元素:

<trim prefix="SET" suffixOverrides=",">
  ...
trim>

所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码来实现SQL语句的动态改变

if

where,set,choose,when

5.SQL片段

有时,我们可能会将一些功能的部分提取出来,方便复用

  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="com.abin.pojo.Blog">
        select *from mybatis.blog where 1=1
        <include refid="if-title-author">include>
    select>
    

注意:

  • 最好基于单表来定义SQL片段,这样能提高复用率
  • 不要存在where标签

6.Foreach

动态 SQL 的另一个常见使用场景是对集合进行遍历(尤其是在构建 IN 条件语句的时候)。比如:

<select id="selectPostIn" resultType="domain.blog.Post">
  SELECT *
  FROM POST P
  WHERE ID in
  <foreach item="item" index="index" collection="list"
      open="(" separator="," close=")">
        #{item}
  foreach>
select>

foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。这个元素也不会错误地添加多余的分隔符,看它多智能!

提示 你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象作为集合参数传递给 foreach。当使用可迭代对象或者数组时,index 是当前迭代的序号,item 的值是本次迭代获取到的元素。当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。

样例:从blog表中查找id为1,2的信息

正常情况SQL:SELECT *FROM blog WHERE 1=1 AND (id = 1 or id=2 )

使用foreach时,mapper:

//查询1-2号的博客
List<Blog> queryBlogForeach(Map map);

xml配置:


    <select id="queryBlogForeach" parameterType="map" resultType="com.abin.pojo.Blog">
        select *from mybatis.blog


        <where>
            <foreach collection="ids" item="id" open="and (" close=")" separator="or">
                id = #{id}
            foreach>
        where>
    select>

测试:

@Test
public void queryBlogForeach(){
    SqlSession sqlSession = MybatisUtils.getSqlSession();
    BlogMapper blogMapper = sqlSession.getMapper(BlogMapper.class);
    HashMap map = new HashMap();
    ArrayList<Integer> ids = new ArrayList<Integer>();
    ids.add(1);
    ids.add(2);
    map.put("ids",ids);
    List<Blog> blogs = blogMapper.queryBlogForeach(map);
    sqlSession.close();
}

输出结果:

Mybatis核心知识点总结_第14张图片

如果ids这个list里面不添加任何东西的话,也就是where的条件不满足,则会直接执行 select *from mybatis.blog,查询出所有数据。

动态SQL就是在拼接SQL语句,我们只要保证SQL的正确性,按照SQL的格式,去排列组合就可以了!

建议:

  • 先在mysql中写出正确的SQL,然后再根据sql去写出通用的动态SQL

13、缓存

1.简介

查询–>连接数据库 耗资源

  1. 什么是缓存(Cache)?
    • 存在内存中的临时数据
    • 将用户经常查询的数据放在缓存(内存)中,用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询,从缓存中查询,从而提高查询效率,解决了高并发系统的性能问题
  2. 为什么使用缓存?
    • 减少和数据库交互次数,减少系统开销,提高系统效率
  3. 什么样的数据库能使用缓存?
    • 经常查询并且不经常改变的数据

2.Mybatis缓存

mybatis 提供了对缓存的支持, 分为一级缓存二级缓存。 但是在默认的情况下, 只开启一级缓存(一级缓存是对同一个 SqlSession 而言的)。

3.一级缓存

  • 一级缓存也叫本地缓存:SqlSession
    • 与数据库同一次会话期间查询到的数据会放在本地缓存中
    • 以后如果需要获取相同的数据,直接从缓存中拿,不用再去查询数据库

测试步骤:

  1. 开启日志

  2. 测试在一个sqlsession中查询两次记录

    @Test
    public void test(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
        User user = userMapper.queryUserById(1);
        System.out.println(user);
        
        System.out.println("==========================");
    
        User user2 = userMapper.queryUserById(1);
    
        System.out.println(user2);
    	
         System.out.println(user==user2);	//返回true
        sqlSession.close();
    
    }
    
  3. 查看日志输出

Mybatis核心知识点总结_第15张图片

可以看出,使用的是一次连接查询出来的数据。

缓存失效的情况:

  1. 查询不同的东西

  2. 增删改操作,可能会改变原来的数据,所以必定会刷新缓存!

    @Test
    public void test(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
        User user = userMapper.queryUserById(1);
        System.out.println(user);
    
        userMapper.updateUser(new User(1,"asd","asdasdsa"));
        System.out.println("==========================");
    
        User user2 = userMapper.queryUserById(1);
    
        System.out.println(user2);
    
        sqlSession.close();
    
    }
    

    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qHNN2ENY-1616166030297)(Mybatis.assets/image-20210319213853165.png)]

  3. 查询不同的Mapper.xml

  4. 手动清理缓存

Mybatis核心知识点总结_第16张图片

小结:一级缓存默认是开启的,只在一次SqlSession中起作用,也就是拿到连接到关闭连接这个时间段!

一级缓存相当于一个map

4.二级缓存

  • 二级缓存也叫全局缓存,一级缓存作用域太低了,所以诞生了二级缓存
  • 基于namespace级别的缓存,一个名称空间,对应一个二级缓存
  • 工作机制
    • 一个会话查询一条数据,这个数据就会被放在当前会话的一级缓存中
    • 如果当前会话关闭了,这个会话对应的一级缓存就没了;但是我们想要的是,会话关闭了,一级缓存中的数据被保存到二级缓存中
    • 新的会话查询信息,就可以从二级缓存中获取内容
    • 不同的mapper查出的数据会放在自己对应的缓存(map)中

默认情况下,只启用了本地的会话缓存,它仅仅对一个会话中的数据进行缓存。 要启用全局的二级缓存,只需要在你的 SQL 映射文件中添加一行:

<cache/>

提示 缓存只作用于 cache 标签所在的映射文件中的语句。如果你混合使用 Java API 和 XML 映射文件,在共用接口中的语句将不会被默认缓存。你需要使用 @CacheNamespaceRef 注解指定缓存作用域。

这些属性可以通过 cache 元素的属性来修改。比如:

<cache
  eviction="FIFO"
  flushInterval="60000"
  size="512"
  readOnly="true"/>

这个更高级的配置创建了一个 FIFO 缓存,每隔 60 秒刷新,最多可以存储结果对象或列表的 512 个引用,而且返回的对象被认为是只读的,因此对它们进行修改可能会在不同线程中的调用者产生冲突。

可用的清除策略有:

  • LRU – 最近最少使用:移除最长时间不被使用的对象。
  • FIFO – 先进先出:按对象进入缓存的顺序来移除它们。
  • SOFT – 软引用:基于垃圾回收器状态和软引用规则移除对象。
  • WEAK – 弱引用:更积极地基于垃圾收集器状态和弱引用规则移除对象。

默认的清除策略是 LRU。

flushInterval(刷新间隔)属性可以被设置为任意的正整数,设置的值应该是一个以毫秒为单位的合理时间量。 默认情况是不设置,也就是没有刷新间隔,缓存仅仅会在调用语句时刷新。

size(引用数目)属性可以被设置为任意正整数,要注意欲缓存对象的大小和运行环境中可用的内存资源。默认值是 1024。

readOnly(只读)属性可以被设置为 true 或 false。只读的缓存会给所有调用者返回缓存对象的相同实例。 因此这些对象不能被修改。这就提供了可观的性能提升。而可读写的缓存会(通过序列化)返回缓存对象的拷贝。 速度上会慢一些,但是更安全,因此默认值是 false。

提示 二级缓存是事务性的。这意味着,当 SqlSession 完成并提交时,或是完成并回滚,但没有执行 flushCache=true 的 insert/delete/update 语句时,缓存会获得更新。


步骤:

  1. 开启全局缓存

    
            <setting name="cacheEnabled" value="true"/>
    
  2. 在mapper.xml中添加标签开启二级缓存

    <cache/>
    

    也可以自定义参数

    <cache
      eviction="FIFO"
      flushInterval="60000"
      size="512"
      readOnly="true"/>
    
  3. 测试

    @Test
    public void test(){
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        SqlSession sqlSession2 = MybatisUtils.getSqlSession();
        UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
        UserMapper userMapper2 = sqlSession2.getMapper(UserMapper.class);
        User user = userMapper.queryUserById(1);
        System.out.println(user);
        sqlSession.close(); //关闭SQLSession,一级缓存数据丢到二级缓存中
    
    
        System.out.println("==========================");
    
        User user2 = userMapper2.queryUserById(1);
    
        System.out.println(user2);
    
        System.out.println(user==user2);
    
        sqlSession.close();
    
    }
    

    查询结果可以看到,只查询了一次,并且为同一个user对象

Mybatis核心知识点总结_第17张图片

问题:

​ 1.问题:当cache标签里不写东西时,我们需要将实体类序列化!否则会报错

​ 2.建议cache标签写完整

小结:

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

5.缓存原理

Mybatis核心知识点总结_第18张图片

6.自定义缓存

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

使用Ehcache,需要先导包


        
        <dependency>
            <groupId>org.mybatis.cachesgroupId>
            <artifactId>mybatis-ehcacheartifactId>
            <version>1.1.0version>
        dependency>

在mapper.xml中指定使用ehcache

<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>

ehcache.xml


<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
         updateCheck="false">

    <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"/>
ehcache>

未来会使用Redis数据库来做缓存! K-V…

学无止境,贵在坚持,Spring见....																												------abin

你可能感兴趣的:(Java学习,笔记)