目录导航
MyBatis 默认开启了一级缓存,一级缓存是在SqlSession 层面进行缓存的。即,同一个SqlSession ,多次调用同一个Mapper和同一个方法的同一个参数,只会进行一次数据库查询,然后把数据缓存到缓冲中,以后直接先从缓存中取出数据,不会直接去查数据库。
但是不同的SqlSession对象,因为不用的SqlSession都是相互隔离的,所以相同的Mapper、参数和方法,他还是会再次发送到SQL到数据库去执行,返回结果。
public static void main(String[] args) {
// 自定义的单例SqlSessionFactory模式
SqlSessionFactory factory = SqlSessionFactoryUtil.openSqlSession();
// 获得SqlSession对象
SqlSession sqlSession = factory.openSession();
// 获得dao实体
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
// 进行两次相同的查询操作
userMapper.selectByPrimaryKey(1);
userMapper.selectByPrimaryKey(1);
// 注意,当我们使用二级缓存时候,sqlSession需要使用commit时候才会生效
sqlSession.commit();
System.out.println("\n\n=============================================================");
// 获得一个新的SqlSession 对象
SqlSession sqlSession1 = factory.openSession();
// 进行相同的查询操作
sqlSession1.getMapper(UserMapper.class).selectByPrimaryKey(1);
// 注意,当我们使用二级缓存时候,sqlSession需要使用commit时候才会生效
sqlSession.commit();
}
日志输出
DEBUG [main] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@77caeb3e]
DEBUG [main] - ==> Preparing: select user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password from user where user_ID = ?
DEBUG [main] - ==> Parameters: 1(Integer)
TRACE [main] - <== Columns: user_ID, login_name, user_name, user_code, user_type, user_active, organization_ID, user_position, password
TRACE [main] - <== Row: 1, HBAF-001, 李晓龙, HBAF-001, EMPLOYEE, 1, 0, 董事长, 152fa91ab3688aadcee09a88e4251a54
DEBUG [main] - <== Total: 1
=============================================================
DEBUG [main] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@553f17c]
DEBUG [main] - ==> Preparing: select user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password from user where user_ID = ?
DEBUG [main] - ==> Parameters: 1(Integer)
TRACE [main] - <== Columns: user_ID, login_name, user_name, user_code, user_type, user_active, organization_ID, user_position, password
TRACE [main] - <== Row: 1, HBAF-001, 李晓龙, HBAF-001, EMPLOYEE, 1, 0, 董事长, 152fa91ab3688aadcee09a88e4251a54
DEBUG [main] - <== Total: 1
可以发现,第一次的两个相同操作,只执行了一次数据库。后来的那个操作又进行了数据库查询。
为了克服这个问题,需要开启二级缓存,是的缓存zaiSqlSessionFactory层面给各个SqlSession 对象共享。默认二级缓存是不开启的,需要手动进行配置。
<cache/>
如果这样配置的话,很多其他的配置就会被默认进行,如:
添加后日志打印如下,可以发现所有过程只使用了一次数据库查询
EBUG [main] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@5622fdf]
DEBUG [main] - ==> Preparing: select user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password from user where user_ID = ?
DEBUG [main] - ==> Parameters: 1(Integer)
TRACE [main] - <== Columns: user_ID, login_name, user_name, user_code, user_type, user_active, organization_ID, user_position, password
TRACE [main] - <== Row: 1, HBAF-001, 李晓龙, HBAF-001, EMPLOYEE, 1, 0, 董事长, 152fa91ab3688aadcee09a88e4251a54
DEBUG [main] - <== Total: 1
=============================================================
可以在开启二级缓存时候,手动配置一些属性
<cache eviction="LRU" flushInterval="100000" size="1024" readOnly="true"/>
各个属性意义如下:
可以在Mapper的具体方法下设置对二级缓存的访问意愿:
如果一条语句每次都需要最新的数据,就意味着每次都需要从数据库中查询数据,可以把这个属性设置为false,如:
<select id="selectAll" resultMap="BaseResultMap" useCache="false">
二级缓存默认会在insert、update、delete操作后刷新缓存,可以手动配置不更新缓存,如下:
<update id="updateById" parameterType="User" flushCache="false" />
自定义缓存对象,该对象必须实现 org.apache.ibatis.cache.Cache 接口,如下:
import org.apache.ibatis.cache.Cache;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
/**
* Created by Luky on 2017/10/14.
*/
public class BatisCache implements Cache {
private ReadWriteLock lock = new ReentrantReadWriteLock();
private ConcurrentHashMap
在Mapper文件里配置使用该自定义的缓存对象,如:
<cache type="com.sanyue.utils.BatisCache"/>
测试如下:
public static void main(String[] args) {
SqlSessionFactory factory = SqlSessionFactoryUtil.openSqlSession();
// 获得SqlSession对象
SqlSession sqlSession = factory.openSession();
// 获得dao实体
UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
// 进行两次相同的查询操作
userMapper.selectByPrimaryKey(1);
userMapper.selectByPrimaryKey(1);
// 注意,当我们使用二级缓存时候,sqlSession需要使用commit时候才会生效
sqlSession.commit();
System.out.println("\n\n=============================================================");
// 获得一个新的SqlSession 对象
SqlSession sqlSession1 = factory.openSession();
// 进行相同的查询操作
sqlSession1.getMapper(UserMapper.class).selectByPrimaryKey(1);
sqlSession1.commit();
}
日志输出如下:
初始化-2!
得到ID:com.sanyue.dao.UserMapper
获取锁对象!!!
通过kEY获取值:151355725:1423317450:com.sanyue.dao.UserMapper.selectByPrimaryKey:0:2147483647:
select
user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password
from user
where user_ID = ?
:1
OVER
=======================================================
值为:null
=====================OVER==============================
获取锁对象!!!
获取锁对象!!!
通过kEY获取值:151355725:1423317450:com.sanyue.dao.UserMapper.selectByPrimaryKey:0:2147483647:
select
user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password
from user
where user_ID = ?
:1
OVER
=======================================================
值为:null
=====================OVER==============================
获取锁对象!!!
获取锁对象!!!
往缓存中添加元素:key=151355725:1423317450:com.sanyue.dao.UserMapper.selectByPrimaryKey:0:2147483647:
select
user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password
from user
where user_ID = ?
:1,value=[User{userId=1, loginName='HBAF-001', password='152fa91ab3688aadcee09a88e4251a54', userName='李晓龙', userCode='HBAF-001', userType='EMPLOYEE', userActive=true, organizationId=0, userPosition='董事长'}]
获取锁对象!!!
=============================================================
获取锁对象!!!
通过kEY获取值:151355725:1423317450:com.sanyue.dao.UserMapper.selectByPrimaryKey:0:2147483647:
select
user_ID, login_name,user_name, user_code, user_type, user_active, organization_ID,user_position,password
from user
where user_ID = ?
:1
OVER
=======================================================
值为:[User{userId=1, loginName='HBAF-001', password='152fa91ab3688aadcee09a88e4251a54', userName='李晓龙', userCode='HBAF-001', userType='EMPLOYEE', userActive=true, organizationId=0, userPosition='董事长'}]
=====================OVER==============================
获取锁对象!!!
可以看出,每次查询数据库前,MyBatis都会先在缓存中查找是否有该缓存对象。只有当调用了commit() 方法,MyBatis才会往缓存中写入数据,数据记录的键为 数字编号+Mapper名+方法名+SQL语句+参数
格式,值为返回的对象值。
什么是延迟加载
resultMap中的association和collection标签具有延迟加载的功能。
延迟加载的意思是说,在关联查询时,利用延迟加载,先加载主信息。使用关联信息时再去加载关联信息。
设置延迟加载
需要在SqlMapConfig.xml文件中,在
lazyLoadingEnabled、aggressiveLazyLoading
设置项 |
描述 |
允许值 |
默认值 |
lazyLoadingEnabled |
全局性设置懒加载。如果设为‘false’,则所有相关联的都会被初始化加载。 |
true | false |
false |
aggressiveLazyLoading |
当设置为‘true’的时候,懒加载的对象可能被任何懒属性全部加载。否则,每个属性都按需加载。 |
true | false |
true |
1
2
3
4
5
6
7
8
9
10
|
<
settings
>
<
setting
name
=
"lazyLoadingEnabled"
value
=
"true"
/>
<
setting
name
=
"aggressiveLazyLoading"
value
=
"false"
/>
<
setting
name
=
"cacheEnabled"
value
=
"true"
/>
settings
>
|