中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用redis作為mybatis的二級緩存

發布時間:2020-07-05 11:07:10 來源:網絡 閱讀:5170 作者:zbzbzb022 欄目:軟件技術

本次介紹一下使用mybatis-redis項目作為mybatis的二級緩存在生產項目中的配置與應用。

首先,在pom中添加一下依賴:

<!-- mybatis cache -->
<dependency>
    <groupId>org.mybatis.caches</groupId>
    <artifactId>mybatis-redis</artifactId>
    <version>1.0.0-beta2</version>
</dependency>

依賴添加成功后,在src/main/resources下面創建redis的配置文件redis.properties

#1.0 redis factory configuration

host=xxx.xxx.xxx.xxx

port=6379

password=xxxxxxxx

timeout=5000

usePool=true

#redis pool configuration

maxTotal=600

maxIdle=300

minIdle=10

maxWaitMillis=2000

testOnBorrow=false

testOnReturn=false

配置文件創建成功后,在生成的 xxxMapper.xml中寫入配置在<mapper></mapper>之間

<cache type="org.mybatis.caches.redis.RedisCache" />

使用redis作為mybatis的二級緩存

useCache表示是否需要使用緩存

flushCache表示插入后是否需要刷新緩存

<select ... flushCache="false" useCache="true"/>

<insert ... flushCache="true"/>

<update ... flushCache="true"/>

<delete ... flushCache="true"/>


測試代碼如下,update后同步刷新緩存,采用默認配置即可。

@Test
public void test01() {
Vc3JourneyAttributeDefinitions vc3JourneyAttributeDefinitions=new Vc3JourneyAttributeDefinitions();
vc3JourneyAttributeDefinitions=vc3JourneyAttributeDefinitionsMapper.selectByPrimaryKey(1L);
vc3JourneyAttributeDefinitions.setAttributeName("Total distance of valid pulses");
vc3JourneyAttributeDefinitionsMapper.updateByPrimaryKey(vc3JourneyAttributeDefinitions);
vc3JourneyAttributeDefinitions=vc3JourneyAttributeDefinitionsMapper.selectByPrimaryKey(1L);
System.out.println(vc3JourneyAttributeDefinitions.getAttributeName());
}

從github上面https://github.com/mybatis/redis-cache

可以下載源碼查看。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乾安县| 琼结县| 射洪县| 扎兰屯市| 永吉县| 同心县| 西林县| 康定县| 垦利县| 伊金霍洛旗| 南涧| 斗六市| 连州市| 开原市| 云阳县| 花莲市| 鄂尔多斯市| 马鞍山市| 灵台县| 淳安县| 大渡口区| 金塔县| 南昌市| 郧西县| 宣恩县| 芜湖市| 枞阳县| 井冈山市| 广宁县| 铅山县| 宜兰县| 西城区| 桦甸市| 雷波县| 丁青县| 南京市| 固阳县| 永城市| 锡林浩特市| 社会| 榆树市|