您好,登錄后才能下訂單哦!
本次介紹一下使用mybatis-redis項(xiàng)目作為mybatis的二級(jí)緩存在生產(chǎn)項(xiàng)目中的配置與應(yīng)用。
首先,在pom中添加一下依賴:
<!-- mybatis cache --> <dependency> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-redis</artifactId> <version>1.0.0-beta2</version> </dependency>
依賴添加成功后,在src/main/resources下面創(chuàng)建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
配置文件創(chuàng)建成功后,在生成的 xxxMapper.xml中寫入配置在<mapper></mapper>之間
<cache type="org.mybatis.caches.redis.RedisCache" />
useCache表示是否需要使用緩存
flushCache表示插入后是否需要刷新緩存
<select ... flushCache="false" useCache="true"/>
<insert ... flushCache="true"/>
<update ... flushCache="true"/>
<delete ... flushCache="true"/>
測(cè)試代碼如下,update后同步刷新緩存,采用默認(rèn)配置即可。
@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
可以下載源碼查看。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。