MyBatis-25MyBatis缓存配置【集成Redis】
生活随笔
收集整理的這篇文章主要介紹了
MyBatis-25MyBatis缓存配置【集成Redis】
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
文章目錄
- 概述
- 集成步驟
- 1.添加項(xiàng)目依賴
- 2. 配置redis
- 3. 修改PrivilegeMapper.xml中的緩存配置
- 其他緩存框架
概述
Redis是一個(gè)高性能的key-value數(shù)據(jù)庫
MyBatis項(xiàng)目開發(fā)者提供了Redis的MyBatis二級(jí)緩存實(shí)現(xiàn),項(xiàng)目名稱為redis-cache.
項(xiàng)目地址
https://github.com/mybatis/redis-cache
集成步驟
1.添加項(xiàng)目依賴
<!-- 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>2. 配置redis
首先啟動(dòng)redis 服務(wù)
然后在src/main/resources目錄下新建 redis.properties
host=172.25.246.13 port=6379 connectionTimeout=5000 soTimeout=5000 password= database=0 clientName=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" ><!-- 當(dāng)Mapper接口和XML文件關(guān)聯(lián)的時(shí)候, namespace的值就需要配置成接口的全限定名稱 --> <mapper namespace="com.artisan.mybatis.xml.mapper.PrivilegeMapper"><!-- 集成Redis緩存 --><cache type="org.mybatis.caches.redis.RedisCache"/><!--其他配置--></mapper>RedisCache在保存緩存數(shù)據(jù)和獲取緩存數(shù)據(jù)的時(shí)候,使用了Java序列化和反序列化,因此必須保證被緩存的對象必須實(shí)現(xiàn)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
總結(jié)
以上是生活随笔為你收集整理的MyBatis-25MyBatis缓存配置【集成Redis】的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: MyBatis-24MyBatis缓存配
- 下一篇: Oralce-清除数据的两种思路