MyBatis-25MyBatis缓存配置【集成Redis】
【摘要】
文章目录
概述集成步骤1.添加项目依赖2. 配置redis3. 修改PrivilegeMapper.xml中的缓存配置
其他缓存框架
概述
Redis是一个高性能的key-val...
概述
Redis是一个高性能的key-value数据库
MyBatis项目开发者提供了Redis的MyBatis二级缓存实现,项目名称为redis-cache.
项目地址
https://github.com/mybatis/redis-cache
集成步骤
1.添加项目依赖
<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-redis -->
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-redis</artifactId>
<version>1.0.0-beta2</version>
</dependency>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
2. 配置redis
首先启动redis 服务
然后在src/main/resources目录下新建 redis.properties
host=172.25.246.13
port=6379
connectionTimeout=5000
soTimeout=5000
password=
database=0
clientName=
- 1
- 2
- 3
- 4
- 5
- 6
- 7
3. 修改PrivilegeMapper.xml中的缓存配置
redis-cache提供了 org.mybatis.caches.redis.RedisCache
<?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接口和XML文件关联的时候, namespace的值就需要配置成接口的全限定名称 -->
<mapper namespace="com.artisan.mybatis.xml.mapper.PrivilegeMapper">
<!-- 集成Redis缓存 -->
<cache type="org.mybatis.caches.redis.RedisCache"/>
<!--其他配置-->
</mapper>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
RedisCache在保存缓存数据和获取缓存数据的时候,使用了Java序列化和反序列化,因此必须保证被缓存的对象必须实现Serializable接口。
其他缓存框架
- ignite-cache https://github.com/mybatis/ignite-cache
- couchbase-cache https://github.com/mybatis/couchbase-cache
- caffeine-cache https://github.com/mybatis/affeine-cache
- memcached-cache https://github.com/mybatis/mcached-cache
- scache-cache https://github.com/mybatis/scache-cache
文章来源: artisan.blog.csdn.net,作者:小小工匠,版权归原作者所有,如需转载,请联系作者。
原文链接:artisan.blog.csdn.net/article/details/80234152
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)