Mybatis二级缓存是SessionFactory,如果两次查询基于同一个SessionFactory,那么就从二级缓存中取数据,而不用到数据库里去取了。
步骤1:先运行,看到效果,再学习
步骤2:模仿和排错
步骤3:基于前一个知识点
步骤4:观察无二级缓存
步骤5:启动二级缓存
步骤6:在Category.xml中增加 <cache/>
步骤7:序列化Category
步骤8:运行测试
步骤 1 : 先运行,看到效果,再学习
老规矩,先下载下载区(点击进入)的可运行项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的效果。
步骤 2 : 模仿和排错
在确保可运行项目能够正确无误地运行之后,再严格照着教程的步骤,对代码模仿一遍。
模仿过程难免代码有出入,导致无法得到期望的运行结果,此时此刻通过比较正确答案 ( 可运行项目 ) 和自己的代码,来定位问题所在。
采用这种方式,学习有效果,排错有效率,可以较为明显地提升学习速度,跨过学习路上的各个槛。
推荐使用diffmerge软件,进行文件夹比较。把你自己做的项目文件夹,和我的可运行项目文件夹进行比较。
这个软件很牛逼的,可以知道文件夹里哪两个文件不对,并且很明显地标记出来
这里提供了绿色安装和使用教程:diffmerge 下载和使用教程
步骤 3 : 基于前一个知识点
对一级缓存知识点进行改造,以支持二级缓存
步骤 4 : 观察无二级缓存
步骤 5 : 启动二级缓存
11行新增一个段配置,以支持二级缓存
<setting name= "cacheEnabled" value= "true" />
|
<?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>
<settings>
<!-- 打开延迟加载的开关 -->
<setting name= "lazyLoadingEnabled" value= "true" />
<!-- 将积极加载改为消息加载即按需加载 -->
<setting name= "aggressiveLazyLoading" value= "false" />
<setting name= "cacheEnabled" value= "true" />
</settings>
<typeAliases>
< package name= "com.how2java.pojo" />
</typeAliases>
<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/how2java?characterEncoding=UTF-8" />
<property name= "username" value= "root" />
<property name= "password" value= "admin" />
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource= "com/how2java/pojo/Category.xml" />
<mapper class = "com.how2java.mapper.CategoryMapper" />
<mapper class = "com.how2java.mapper.ProductMapper" />
</mappers>
</configuration>
|
步骤 6 : 在Category.xml中增加 <cache/>
第7行新增<cache/>以启动对Category对象的二级缓存
<? 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 = "com.how2java.pojo" >
< cache />
< insert id = "addCategory" parameterType = "Category" >
insert into category_ ( name ) values (#{name})
</ insert >
< delete id = "deleteCategory" parameterType = "Category" >
delete from category_ where id= #{id}
</ delete >
< select id = "getCategory" parameterType = "_int" resultType = "Category" >
select * from category_ where id= #{id}
</ select >
< update id = "updateCategory" parameterType = "Category" >
update category_ set name=#{name} where id=#{id}
</ update >
< select id = "listCategory" resultType = "Category" >
select * from category_
< if test = "start!=null and count!=null" >
limit #{start},#{count}
</ if >
</ select >
</ mapper >
|
步骤 7 : 序列化Category
让Category 实现序列化接口
package com.how2java.pojo;
import java.io.Serializable;
import java.util.List;
public class Category implements Serializable{
private int id;
private String name;
List<Product> products;
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 List<Product> getProducts() {
return products;
}
public void setProducts(List<Product> products) {
this .products = products;
}
@Override
public String toString() {
return "Category [id=" + id + ", name=" + name + "]" ;
}
}
|
步骤 8 : 运行测试
再次运行TestMybatis,如图所示,在同一个SessionFactory下查询id=1的数据,只有第一次需要执行sql语句,以后都是从缓存中取出
更多内容,点击了解: https://how2j.cn/k/mybatis/mybatis-annotation-second-level-cache/1102.html