【SSM】Mybatis系列——动态SQL、缓存

文章目录

    • 12 动态SQL
      • 12.1 搭建环境
      • 12.2 IF
      • 12.3 choose (when,otherwise)
      • 12.4 trim (where, set)
      • 12.5 SQL片段
      • 12.6 Foreach
    • 13 缓存
      • 13.1 简介
      • 13.2 Mybatis缓存
      • 13.3 一级缓存
      • 13.4 二级缓存
      • 13.5 缓存原理
      • 13.6 自定义缓存-ehcache

12 动态SQL

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

利用动态SQL这一特性可以摆脱这种痛苦。

动态SQL元素和JSTL或基于类似XML的文本处理器相似。在Mybatis之前的版本中,有很多元素需要花时间了解。Mybatis 3大大精简了元素种类,现在只需要学习原来的一半的元素便可以了。Mybatis采用功能强大的基于OGNL的表达式来淘汰其他大部分元素

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

12.1 搭建环境

CREATE TABLE `blog`(
	`id` VARCHAR(50) NOT NULL COMMENT '博客',
	`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
  • 创建一个基础工程
  • 导包
  • 编写配置文件
  • 编写实体类
  • 编写实体类对应的Mapper接口和Mapper.xml文件

12.2 IF


<select id="queryBlogIF" parameterType="map" resultType="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>

12.3 choose (when,otherwise)

<select id="queryBlogChoose" parameterType="map" resultType="blog">
    select * from mybatis.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.4 trim (where, set)


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

<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>

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

if where set choose when

12.5 SQL片段

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

使用SQL标签抽取公共部分

<sql id="sql-if-title-author">
    <if test="title != null">
        title = #{title}
    if>
    <if test="author != null">
        and author = #{author}
    if>
sql>

在需要使用的地方使用Include标签引用即可


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

注意事项:

最好基于单表定义SQL片段!!
sql标签不要存在where标签 因为他是动态的

12.6 Foreach

select * from user where 1=1 and 

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

(id=1 or id=2 or id=3)

在这里插入图片描述

相当于遍历一个数组


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

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

建议:

现在Mybatis中写出完整的SQL,再对应的去修改成为我们的动态SQL实现通用即可

13 缓存

13.1 简介

查询:连接数据库,耗资源!
一次查询结果,给他暂存在一个可以直接取到的地方!–> 内存:缓存

我们再次查询相同数据的时候,直接走缓存,就不用走数据库了

1.什么是缓存【Cache】?

  • 存在内存中的临时数据
  • 将用户经常查询的数据放在缓存(内存)中,用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询,从缓存中查询,从而提高查询效率,解决高并发系统的性能问题。

2.为什么使用缓存?

  • 减少和数据库的交互次数,减少系统开销,提高系统效率

3.什么样的数据能使用缓存?

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

13.2 Mybatis缓存

  • Mybatis包含一个强大的查询缓存特性,它可以非常方便地定制和配置缓存。缓存可以极大提升查询效率

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

    • 默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)

    • 二级缓存需要手动和配置,他是基于namespace级别的缓存

    • 为了提高扩展性,Mybatis定义了缓存接口Cache。我们可以通过实现Cache接口来定义二级缓存

13.3 一级缓存

一级缓存也叫本地缓存: SqlSession

  • 与数据库同义词会话期间查询到的数据会放在本地缓存中;
  • 以后如果需要直接到本地缓存中拿,没必要再去查询数据库;

测试步骤:

开启日志

测试在一个Session中查询相同记录

在这里插入图片描述

缓存失效的情况:

  1. 查询不同的东西;

  2. 增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
    在这里插入图片描述

  3. 查询不同的Mapper.xml

  4. 手动清理缓存sqlSession.clearCache()

  5. 关闭缓存: sqlSession.close() ;

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

一级缓存就是一个map

13.4 二级缓存

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

步骤:

1、开启全局缓存 Mybatis-config.xml


<setting name="cacheEnabled" value="true"/>

2、在要使用二级缓存的Mapper中开启


<cache/>

也可以自定义参数


<cache eviction="FIFO"
       flushInterval="6000"
       size="521"
       readOnly="true"
       />

3、测试

问题:我们需要将实体类序列化!否则就会报错!

Caused by: java.io.NotSerializableException:com.kun.pojo.User
public class User implements Serializable{}

小结:

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

13.5 缓存原理

在这里插入图片描述

13.6 自定义缓存-ehcache

Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存
1
要在程序中使用,先要导包!


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

在mapper中指定使用我们的ehcache缓存实现!


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

ehcache.xml

 <ehcache>
	
    <diskStore path="java.io.tmpdir"/>
	
    <defaultCache
            maxElementsInMemory="4"
            eternal="true"
            timeToIdleSeconds="100"
            timeToLiveSeconds="200"
            overflowToDisk="false"
            memoryStoreEvictionPolicy="LFU"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="15"
     />
 ehcache>

Redis数据库来做缓存!!

你可能感兴趣的:(#,Mybatis,mybatis,sql,缓存)