Spring中整合Ehcache使用頁面、物件快取
Ehcache在很多專案中都出現過,用法也比較簡單。一般的加些配置就可以了,而且Ehcache可以對頁面、物件、資料進行快取,同時支援叢集/分散式快取。如果整合Spring、Hibernate也非常的簡單,Spring對Ehcache的支援也非常好。EHCache支援記憶體和磁碟的快取,支援LRU、LFU和FIFO多種淘汰演算法,支援分散式的Cache,可以作為Hibernate的快取外掛。同時它也能提供基於Filter的Cache,該Filter可以快取響應的內容並採用Gzip壓縮提高響應速度。
Email:hoojo_@126.com
一、準備工作
如果你的系統中已經成功加入Spring、Hibernate;那麼你就可以進入下面Ehcache的準備工作。
1、 下載jar包
2、 需要新增如下jar包到lib目錄下
ehcache-core-2.5.2.jar
ehcache-web-2.0.4.jar 主要針對頁面快取
3、 當前工程的src目錄中加入配置檔案
ehcache.xml
ehcache.xsd
這些配置檔案在ehcache-core這個jar包中可以找到
二、Ehcache基本用法
CacheManager cacheManager = CacheManager.create(); // 或者 cacheManager = CacheManager.getInstance(); // 或者 cacheManager = CacheManager.create("/config/ehcache.xml"); // 或者 cacheManager = CacheManager.create("http://localhost:8080/test/ehcache.xml"); cacheManager = CacheManager.newInstance("/config/ehcache.xml"); // ....... // 獲取ehcache配置檔案中的一個cache Cache sample = cacheManager.getCache("sample"); // 獲取頁面快取 BlockingCache cache = new BlockingCache(cacheManager.getEhcache("SimplePageCachingFilter")); // 新增資料到快取中 Element element = new Element("key", "val"); sample.put(element); // 獲取快取中的物件,注意新增到cache中物件要序列化 實現Serializable介面 Element result = sample.get("key"); // 刪除快取 sample.remove("key"); sample.removeAll(); // 獲取快取管理器中的快取配置名稱 for (String cacheName : cacheManager.getCacheNames()) { System.out.println(cacheName); } // 獲取所有的快取物件 for (Object key : cache.getKeys()) { System.out.println(key); } // 得到快取中的物件數 cache.getSize(); // 得到快取物件佔用記憶體的大小 cache.getMemoryStoreSize(); // 得到快取讀取的命中次數 cache.getStatistics().getCacheHits(); // 得到快取讀取的錯失次數 cache.getStatistics().getCacheMisses();
三、頁面快取
頁面快取主要用Filter過濾器對請求的url進行過濾,如果該url在快取中出現。那麼頁面資料就從快取物件中獲取,並以gzip壓縮後返回。其速度是沒有壓縮快取時速度的3-5倍,效率相當之高!其中頁面快取的過濾器有CachingFilter,一般要擴充套件filter或是自定義Filter都繼承該CachingFilter。
CachingFilter功能可以對HTTP響應的內容進行快取。這種方式快取資料的粒度比較粗,例如快取整張頁面。它的優點是使用簡單、效率高,缺點是不夠靈活,可重用程度不高。
EHCache使用SimplePageCachingFilter類實現Filter快取。該類繼承自CachingFilter,有預設產生cache key的calculateKey()方法,該方法使用HTTP請求的URI和查詢條件來組成key。也可以自己實現一個Filter,同樣繼承CachingFilter類,然後覆寫calculateKey()方法,生成自定義的key。
CachingFilter輸出的資料會根據瀏覽器傳送的Accept-Encoding頭資訊進行Gzip壓縮。
在使用Gzip壓縮時,需注意兩個問題:
1. Filter在進行Gzip壓縮時,採用系統預設編碼,對於使用GBK編碼的中文網頁來說,需要將作業系統的語言設定為:zh_CN.GBK,否則會出現亂碼的問題。
2. 預設情況下CachingFilter會根據瀏覽器傳送的請求頭部所包含的Accept-Encoding引數值來判斷是否進行Gzip壓縮。雖然IE6/7瀏覽器是支援Gzip壓縮的,但是在傳送請求的時候卻不帶該引數。為了對IE6/7也能進行Gzip壓縮,可以通過繼承CachingFilter,實現自己的Filter,然後在具體的實現中覆寫方法acceptsGzipEncoding。
具體實現參考:
protected boolean acceptsGzipEncoding(HttpServletRequest request) { boolean ie6 = headerContains(request, "User-Agent", "MSIE 6.0"); boolean ie7 = headerContains(request, "User-Agent", "MSIE 7.0"); return acceptsEncoding(request, "gzip") || ie6 || ie7; }
在ehcache.xml中加入如下配置
<?xml version="1.0" encoding="gbk"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd"> <diskStore path="java.io.tmpdir"/> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="30" timeToLiveSeconds="30" overflowToDisk="false"/> <!-- 配置自定義快取 maxElementsInMemory:快取中允許建立的最大物件數 eternal:快取中物件是否為永久的,如果是,超時設定將被忽略,物件從不過期。 timeToIdleSeconds:快取資料的鈍化時間,也就是在一個元素消亡之前, 兩次訪問時間的最大時間間隔值,這隻能在元素不是永久駐留時有效, 如果該值是 0 就意味著元素可以停頓無窮長的時間。 timeToLiveSeconds:快取資料的生存時間,也就是一個元素從構建到消亡的最大時間間隔值, 這隻能在元素不是永久駐留時有效,如果該值是0就意味著元素可以停頓無窮長的時間。 overflowToDisk:記憶體不足時,是否啟用磁碟快取。 memoryStoreEvictionPolicy:快取滿了之後的淘汰演算法。 --> <cache name="SimplePageCachingFilter" maxElementsInMemory="10000" eternal="false" overflowToDisk="false" timeToIdleSeconds="900" timeToLiveSeconds="1800" memoryStoreEvictionPolicy="LFU" /> </ehcache>
具體程式碼:
package com.hoo.ehcache.filter; import java.util.Enumeration; import javax.servlet.FilterChain; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sf.ehcache.CacheException; import net.sf.ehcache.constructs.blocking.LockTimeoutException; import net.sf.ehcache.constructs.web.AlreadyCommittedException; import net.sf.ehcache.constructs.web.AlreadyGzippedException; import net.sf.ehcache.constructs.web.filter.FilterNonReentrantException; import net.sf.ehcache.constructs.web.filter.SimplePageCachingFilter; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logger; /** * <b>function:</b> mobile 頁面快取過濾器 * @author hoojo * @createDate 2012-7-4 上午09:34:30 * @file PageEhCacheFilter.java * @package com.hoo.ehcache.filter * @project Ehcache * @blog http://blog.csdn.net/IBM_hoojo * @email hoojo_@126.com * @version 1.0 */ public class PageEhCacheFilter extends SimplePageCachingFilter { private final static Logger log = Logger.getLogger(PageEhCacheFilter.class); private final static String FILTER_URL_PATTERNS = "patterns"; private static String[] cacheURLs; private void init() throws CacheException { String patterns = filterConfig.getInitParameter(FILTER_URL_PATTERNS); cacheURLs = StringUtils.split(patterns, ","); } @Override protected void doFilter(final HttpServletRequest request, final HttpServletResponse response, final FilterChain chain) throws AlreadyGzippedException, AlreadyCommittedException, FilterNonReentrantException, LockTimeoutException, Exception { if (cacheURLs == null) { init(); } String url = request.getRequestURI(); boolean flag = false; if (cacheURLs != null && cacheURLs.length > 0) { for (String cacheURL : cacheURLs) { if (url.contains(cacheURL.trim())) { flag = true; break; } } } // 如果包含我們要快取的url 就快取該頁面,否則執行正常的頁面轉向 if (flag) { String query = request.getQueryString(); if (query != null) { query = "?" + query; } log.info("當前請求被快取:" + url + query); super.doFilter(request, response, chain); } else { chain.doFilter(request, response); } } @SuppressWarnings("unchecked") private boolean headerContains(final HttpServletRequest request, final String header, final String value) { logRequestHeaders(request); final Enumeration accepted = request.getHeaders(header); while (accepted.hasMoreElements()) { final String headerValue = (String) accepted.nextElement(); if (headerValue.indexOf(value) != -1) { return true; } } return false; } /** * @see net.sf.ehcache.constructs.web.filter.Filter#acceptsGzipEncoding(javax.servlet.http.HttpServletRequest) * <b>function:</b> 相容ie6/7 gzip壓縮 * @author hoojo * @createDate 2012-7-4 上午11:07:11 */ @Override protected boolean acceptsGzipEncoding(HttpServletRequest request) { boolean ie6 = headerContains(request, "User-Agent", "MSIE 6.0"); boolean ie7 = headerContains(request, "User-Agent", "MSIE 7.0"); return acceptsEncoding(request, "gzip") || ie6 || ie7; } }
這裡的PageEhCacheFilter繼承了SimplePageCachingFilter,一般情況下SimplePageCachingFilter就夠用了,這裡是為了滿足當前系統需求才做了覆蓋操作。使用SimplePageCachingFilter需要在web.xml中配置cacheName,cacheName預設是SimplePageCachingFilter,對應ehcache.xml中的cache配置。
在web.xml中加入如下配置
<!-- 快取、gzip壓縮核心過濾器 --> <filter> <filter-name>PageEhCacheFilter</filter-name> <filter-class>com.hoo.ehcache.filter.PageEhCacheFilter</filter-class> <init-param> <param-name>patterns</param-name> <!-- 配置你需要快取的url --> <param-value>/cache.jsp, product.action, market.action </param-value> </init-param> </filter> <filter-mapping> <filter-name>PageEhCacheFilter</filter-name> <url-pattern>*.action</url-pattern> </filter-mapping> <filter-mapping> <filter-name>PageEhCacheFilter</filter-name> <url-pattern>*.jsp</url-pattern> </filter-mapping>
當第一次請求這些頁面後,這些頁面就會被新增到快取中,以後請求這些頁面將會從快取中獲取。你可以在cache.jsp頁面中用小指令碼來測試該頁面是否被快取。<%=new Date()%>如果時間是變動的,則表示該頁面沒有被快取或是快取已經過期,否則則是在快取狀態了。
四、物件快取
物件快取就是將查詢的資料,新增到快取中,下次再次查詢的時候直接從快取中獲取,而不去資料庫中查詢。
物件快取一般是針對方法、類而來的,結合Spring的Aop物件、方法快取就很簡單。這裡需要用到切面程式設計,用到了Spring的MethodInterceptor或是用@Aspect。
程式碼如下:
package com.hoo.common.ehcache; import java.io.Serializable; import net.sf.ehcache.Cache; import net.sf.ehcache.Element; import org.aopalliance.intercept.MethodInterceptor; import org.aopalliance.intercept.MethodInvocation; import org.apache.log4j.Logger; import org.springframework.beans.factory.InitializingBean; /** * <b>function:</b> 快取方法攔截器核心程式碼 * @author hoojo * @createDate 2012-7-2 下午06:05:34 * @file MethodCacheInterceptor.java * @package com.hoo.common.ehcache * @project Ehcache * @blog http://blog.csdn.net/IBM_hoojo * @email hoojo_@126.com * @version 1.0 */ public class MethodCacheInterceptor implements MethodInterceptor, InitializingBean { private static final Logger log = Logger.getLogger(MethodCacheInterceptor.class); private Cache cache; public void setCache(Cache cache) { this.cache = cache; } public void afterPropertiesSet() throws Exception { log.info(cache + " A cache is required. Use setCache(Cache) to provide one."); } public Object invoke(MethodInvocation invocation) throws Throwable { String targetName = invocation.getThis().getClass().getName(); String methodName = invocation.getMethod().getName(); Object[] arguments = invocation.getArguments(); Object result; String cacheKey = getCacheKey(targetName, methodName, arguments); Element element = null; synchronized (this) { element = cache.get(cacheKey); if (element == null) { log.info(cacheKey + "加入到快取: " + cache.getName()); // 呼叫實際的方法 result = invocation.proceed(); element = new Element(cacheKey, (Serializable) result); cache.put(element); } else { log.info(cacheKey + "使用快取: " + cache.getName()); } } return element.getValue(); } /** * <b>function:</b> 返回具體的方法全路徑名稱 引數 * @author hoojo * @createDate 2012-7-2 下午06:12:39 * @param targetName 全路徑 * @param methodName 方法名稱 * @param arguments 引數 * @return 完整方法名稱 */ private String getCacheKey(String targetName, String methodName, Object[] arguments) { StringBuffer sb = new StringBuffer(); sb.append(targetName).append(".").append(methodName); if ((arguments != null) && (arguments.length != 0)) { for (int i = 0; i < arguments.length; i++) { sb.append(".").append(arguments[i]); } } return sb.toString(); } }
這裡的方法攔截器主要是對你要攔截的類的方法進行攔截,然後判斷該方法的類路徑+方法名稱+引數值組合的cache key在快取cache中是否存在。如果存在就從快取中取出該物件,轉換成我們要的返回型別。沒有的話就把該方法返回的物件新增到快取中即可。值得主意的是當前方法的引數和返回值的物件型別需要序列化。
我們需要在src目錄下新增applicationContext.xml完成對MethodCacheInterceptor攔截器的配置,該配置主意是注入我們的cache物件,哪個cache來管理物件快取,然後哪些類、方法參與該攔截器的掃描。
新增配置如下:
<context:component-scan base-package="com.hoo.common.interceptor"/> <!-- 配置eh快取管理器 --> <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"/> <!-- 配置一個簡單的快取工廠bean物件 --> <bean id="simpleCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean"> <property name="cacheManager" ref="cacheManager" /> <!-- 使用快取 關聯ehcache.xml中的快取配置 --> <property name="cacheName" value="mobileCache" /> </bean> <!-- 配置一個快取攔截器物件,處理具體的快取業務 --> <bean id="methodCacheInterceptor" class="com. hoo.common.interceptor.MethodCacheInterceptor"> <property name="cache" ref="simpleCache"/> </bean> <!-- 參與快取的切入點物件 (切入點物件,確定何時何地呼叫攔截器) --> <bean id="methodCachePointCut" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor"> <!-- 配置快取aop切面 --> <property name="advice" ref="methodCacheInterceptor" /> <!-- 配置哪些方法參與快取策略 --> <!-- .表示符合任何單一字元 ### +表示符合前一個字元一次或多次 ### *表示符合前一個字元零次或多次 ### \Escape任何Regular expression使用到的符號 --> <!-- .*表示前面的字首(包括包名) 表示print方法--> <property name="patterns"> <list> <value>com.hoo.rest.*RestService*\.*get.*</value> <value>com.hoo.rest.*RestService*\.*search.*</value> </list> </property> </bean> 在ehcache.xml中新增如下cache配置 <cache name="mobileCache" maxElementsInMemory="10000" eternal="false" overflowToDisk="true" timeToIdleSeconds="1800" timeToLiveSeconds="3600" memoryStoreEvictionPolicy="LFU" />
相關文章
- Ehcache 整合Spring 使用頁面、物件快取Spring物件快取
- Spring 整合 Ehcache 管理快取詳解Spring快取
- Mybatis 整合 ehcache快取MyBatis快取
- 另一種快取,Spring Boot 整合 Ehcache快取Spring Boot
- EhCache快取系統在整合環境中的使用詳解快取
- Spring Boot:簡單使用EhCache快取框架Spring Boot快取框架
- EhCache快取使用教程快取
- Spring Boot基礎教程:EhCache快取的使用Spring Boot快取
- 使用EHCACHE三步搞定SPRING BOOT 快取Spring Boot快取
- Ehcache介紹及整合Spring實現快取記憶體Spring快取記憶體
- SpringBoot中Shiro快取使用Redis、EhcacheSpring Boot快取Redis
- spring和ehcache整合,實現基於註解的快取實現Spring快取
- Java快取EhcacheJava快取
- Ehcache快取配置快取
- mybatis二級快取應用及與ehcache整合MyBatis快取
- Spring Boot 2.x基礎教程:EhCache快取的使用Spring Boot快取
- 去除頁面快取快取
- 快取初見——EhCache快取
- Spring Boot Oauth2快取UserDetails到EhcacheSpring BootOAuth快取AI
- 使用Nginx+Memcache做頁面快取Nginx快取
- EhCache 分散式快取/快取叢集分散式快取
- Spring Boot 2.x基礎教程:使用EhCache快取叢集Spring Boot快取
- Spring boot學習(八)Spring boot配置ehcache快取框架Spring Boot快取框架
- Nuxt頁面級快取UX快取
- 頁面快取優化快取優化
- nuxt3正確使用keepalive頁面快取元件快取UX快取元件
- 修改Ehcache快取中取到的值,快取中的值也被修改了快取
- Spring Cache與Ehcache 3整合Spring
- Redis整合Spring結合使用快取例項RedisSpring快取
- 2PHP頁面快取PHP快取
- C#清除頁面快取C#快取
- SpringBoot2 整合Ehcache元件,輕量級快取管理Spring Boot元件快取
- 使用伺服器端控制AJAX頁面快取伺服器快取
- spring boot使用Jedis整合Redis實現快取(AOP)Spring BootRedis快取
- Spring Boot 快速整合 Ehcache3Spring Boot
- ASP.NET 2.0中的頁面輸出快取ASP.NET快取
- 系統快取全解析2:頁面輸出快取快取
- .NET之頁面資料快取快取