摘要:的配置文件,使用前綴的屬性進(jìn)行配置。在方法的調(diào)用前并不會檢查緩存,方法始終都會被調(diào)用。手動使用在實際開發(fā)過程中,存在不使用注解,需要自己添加緩存的情況。如果該屬性值為,則表示對象可以無限期地存在于緩存中。
SpringBoot在annotation的層面實現(xiàn)了數(shù)據(jù)緩存的功能,基于Spring的AOP技術(shù)。所有的緩存配置只是在annotation層面配置,像聲明式事務(wù)一樣。
Spring定義了CacheManager和Cache接口統(tǒng)一不同的緩存技術(shù)。其中CacheManager是Spring提供的各種緩存技術(shù)的抽象接口。而Cache接口包含緩存的各種操作。
CacheManger針對不同的緩存技術(shù),需要實現(xiàn)不同的cacheManager,Spring定義了如下的cacheManger實現(xiàn)。
CacheManger | 描述 |
---|---|
SimpleCacheManager | 使用簡單的Collection來存儲緩存,主要用于測試 |
ConcurrentMapCacheManager | 使用ConcurrentMap作為緩存技術(shù)(默認(rèn)) |
NoOpCacheManager | 測試用 |
EhCacheCacheManager | 使用EhCache作為緩存技術(shù),以前在hibernate的時候經(jīng)常用 |
GuavaCacheManager | 使用google guava的GuavaCache作為緩存技術(shù) |
HazelcastCacheManager | 使用Hazelcast作為緩存技術(shù) |
JCacheCacheManager | 使用JCache標(biāo)準(zhǔn)的實現(xiàn)作為緩存技術(shù),如Apache Commons JCS |
RedisCacheManager | 使用Redis作為緩存技術(shù) |
常規(guī)的SpringBoot已經(jīng)為我們自動配置了EhCache、Collection、Guava、ConcurrentMap等緩存,默認(rèn)使用ConcurrentMapCacheManager。SpringBoot的application.properties配置文件,使用spring.cache前綴的屬性進(jìn)行配置。
application配置spring.cache.type=#緩存的技術(shù)類型 spring.cache.cache-names=應(yīng)用程序啟動創(chuàng)建緩存的名稱 spring.cache.ehcache.config=ehcache的配置文件位置 spring.cache.infinispan.config=infinispan的配置文件位置 spring.cache.jcache.config=jcache配置文件位置 spring.cache.jcache.provider=當(dāng)多個jcache實現(xiàn)類時,指定選擇jcache的實現(xiàn)類入口類配置
加入注解 @EnableCaching
緩存注解注解 | 描述 |
---|---|
@Cacheable | 在調(diào)用方法之前,首先應(yīng)該在緩存中查找方法的返回值,如果這個值能夠找到,就會返回緩存的值。否則,這個方法就會被調(diào)用,返回值會放到緩存之中。 |
@CachePut | 將方法的返回值放到緩存中。在方法的調(diào)用前并不會檢查緩存,方法始終都會被調(diào)用。 |
@CacheEvict | 在緩存中清除一個或多個條目。 |
@Caching | 分組的注解,能夠同時應(yīng)用多個其他的緩存注解。 |
在實際開發(fā)過程中,存在不使用注解,需要自己添加緩存的情況。下面就以Ehcache為例,簡單寫一下配置過程。
1. 添加依賴引入springboot-cache和ehcache。需要注意,EhCache不需要配置version,SpringBoot的根pom已經(jīng)集成了。
2. 入口類配置org.springframework.boot spring-boot-starter-cache net.sf.ehcache ehcache
加入注解 @EnableCaching
@SpringBootApplication @EnableCaching public class DemoApplication { }3. EhCache配置
在srcmain esources目錄下,添加ehcache.xml文件,內(nèi)容見文末。
4. application.application配置# 配置ehcache緩存 spring.cache.type=ehcache # 指定ehcache配置文件路徑 spring.cache.ehcache.config=classpath:/ehcache.xml5. 使用Cache
注入SpringBoot自動配置的bean,org.springframework.cache.CacheManager。
一個簡單的測試類:
package com.bbf.frame.test; import com.bbf.frame.Application; import org.apache.commons.lang3.StringUtils; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.cache.Cache; import org.springframework.cache.CacheManager; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.context.web.WebAppConfiguration; import javax.annotation.Resource; @RunWith(SpringJUnit4ClassRunner.class) @WebAppConfiguration @SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.MOCK) public class TestCache { @Resource private CacheManager cacheManager; @Test public void cacheTest() { // 顯示所有的Cache空間 System.out.println(StringUtils.join(cacheManager.getCacheNames(), ",")); Cache cache = cacheManager.getCache("userCache"); cache.put("key", "123"); System.out.println("緩存成功"); String res = cache.get("key", String.class); System.out.println(res); } }CacheManager轉(zhuǎn)換
// 獲取EhCache的管理器 org.springframework.cache.ehcache.EhCacheCacheManager cacheCacheManager = (EhCacheCacheManager) cacheManager; net.sf.ehcache.CacheManager ehCacheManager = cacheCacheManager.getCacheManager(); net.sf.ehcache.Cache ehCache = ehCacheManager.getCache("userCache");附錄 EhCache.xml
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/61943.html
摘要:的配置文件,使用前綴的屬性進(jìn)行配置。在方法的調(diào)用前并不會檢查緩存,方法始終都會被調(diào)用。手動使用在實際開發(fā)過程中,存在不使用注解,需要自己添加緩存的情況。如果該屬性值為,則表示對象可以無限期地存在于緩存中。 SpringBoot在annotation的層面實現(xiàn)了數(shù)據(jù)緩存的功能,基于Spring的AOP技術(shù)。所有的緩存配置只是在annotation層面配置,像聲明式事務(wù)一樣。 Spring...
摘要:但本文將講述如何將緩存應(yīng)用到應(yīng)用中。這是的使用注解之一,除此之外常用的還有和,分別簡單介紹一下配置在方法上表示其返回值將被加入緩存。 showImg(https://segmentfault.com/img/remote/1460000016643568); 注: 本文首發(fā)于 博客 CodeSheep · 程序羊,歡迎光臨 小站!本文共 851字,閱讀大約需要 3分鐘 ! 本文內(nèi)...
摘要:前言如題,今天介紹的數(shù)據(jù)緩存。說明確實做了數(shù)據(jù)緩存,第二次的測試結(jié)果是從數(shù)據(jù)緩存中獲取的,并沒有直接查數(shù)據(jù)庫。為為的數(shù)據(jù)做了緩存插入數(shù)據(jù)返回的結(jié)果數(shù)據(jù)庫中的結(jié)果訪問結(jié)果如下圖。后語以上為數(shù)據(jù)緩存的教程。 微信公眾號:一個優(yōu)秀的廢人如有問題或建議,請后臺留言,我會盡力解決你的問題。 前言 如題,今天介紹 SpringBoot 的數(shù)據(jù)緩存。做過開發(fā)的都知道程序的瓶頸在于數(shù)據(jù)庫,我們也知道內(nèi)...
閱讀 3480·2023-04-26 02:44
閱讀 1622·2021-11-25 09:43
閱讀 1510·2021-11-08 13:27
閱讀 1881·2021-09-09 09:33
閱讀 899·2019-08-30 15:53
閱讀 1762·2019-08-30 15:53
閱讀 2771·2019-08-30 15:53
閱讀 3106·2019-08-30 15:44