Ehcache 整合Spring 使用頁面、物件快取
一、準備工作
如果你的系統中已經成功加入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 [email protected]
* @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 [email protected]
* @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、Hibernate;那麼你就可以進入下面Ehcache的準備工作。 1、 下載jar包 2、 需要新增如下jar包到lib目錄下 ehcache-core-2.5.2.jar ehcache-web-2.0.4.jar 主要針對頁面快取
Spring Boot整合Spring MVC、Spring、Spring Data JPA(Hibernate)
一句話總結:Spring Boot不是新的功能框架,而是為了簡化如SSH、SSM等等多個框架的搭建、整合及配置。使用Spring Boot 10分鐘搭建起Spring MVC、Spring、Spring Data JPA(Hibernate)基礎後臺架構。基本零配置,全註解。 步驟一: 使用Sprin
快取Ehcache的基本用法(物件快取)
import java.io.Serializable; import net.sf.ehcache.Cache; import net.sf.ehcache.CacheManager; import net.sf.ehcache.Element; /**** * *
Mybatis(3、延遲載入、查詢快取、與ehcache整合、逆向工程、與spring整合)
版權宣告:本文為博主原創文章,未經博主允許不得轉載。 https://blog.csdn.net/www1056481167/article/details/70597788 延遲載入 延遲載入:先從單表查詢、需要時再從關聯表去關聯查詢,大大提高 資料庫效能,因為
使用ehcache快取頁面、ExpiresFilter新增Expires頭,大幅提升網站效能
前幾天把網站部署到伺服器上後發現訪問速度和龜速差不多,內心感到非常焦慮——之前並未做過這方面的嘗試,要解決問題實在有些頭大。 但幸好之前做過一個專案,本地訪問速度感覺奇慢,但正式環境下訪問速度反倒快得飛起。雖然我期初並不知曉原因,但這畢竟是解決問題的線索。 追本溯源的找,情況倒也
spring boot整合ehcache 2.x 用於hibernate二級快取
spring boot整合ehcache 2x 用於hibernate二級快取 專案依賴 Ehcache簡介 hibernate二級快取配置 ehcache配置檔案 ehcache事件監聽 註解方式使用二級快取 完整程式碼 本文將介紹如何在spring boot中整合ehcache作為hiberna
SpringBoot30 整合Mybatis-Plus、整合Redis、利用Ehcache和Redis分別實現二級快取
1 環境說明 JDK: 1.8 MAVEN: 3. SpringBoot: 2.0.4 2 SpringBoot整合Mybatis-Plus 2.1 建立SpringBoot 利用IDEA建立SpringBoot專案,引入web mysql mybatis-plus lombok
Spring Boot中使用快取Redis、EhCache
快取相信各位同學都或多或少用到過,畢竟不能把所有壓力都給資料庫。今天來簡單總結一下下在Spring Boot中使用Redis和EhCache快取O(∩_∩)O~ Spring Boot本身是支援多種快取實現的,其中提供了4個註解來幫助大家使用快取: @Enab
JAVAWEB開發之mybatis詳解(二)——高階對映、查詢快取、mybatis與Spring整合以及懶載入的配置和逆向工程
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "ht
企業級框架____Ehcache快取框架(Ehcache和Spring的整合)
//======整合結構圖 //==建立專案新增spring依賴和Rhcache的jar包 jdbc的資料來源jar包 這是spring啟動必備的一個 ehcache.包和它依賴的包sf4j Ehcache的結構 //==配置spring的applicationCont
【開源專案系列】如何基於 Spring Cache 實現多級快取(同時整合本地快取 Ehcache 和分散式快取 Redis)
## 一、快取 當系統的併發量上來了,如果我們頻繁地去訪問資料庫,那麼會使資料庫的壓力不斷增大,在高峰時甚至可以出現數據庫崩潰的現象。所以一般我們會使用快取來解決這個資料庫併發訪問問題,使用者訪問進來,會先從快取裡查詢,如果存在則返回,如果不存在再從資料庫裡查詢,最後新增到快取裡,然後返回給使用者,當然了,接
IDEA下創建Maven項目,並整合使用Spring、Spring MVC、Mybatis框架
varchar bat 連接 pom.xml文件 http mave eat supported 分享 項目創建 本項目使用的是IDEA 2016創建。項目使用Spring 4.2.6,Mybatis3.4.0,Tomcat使用的是Tomcat8,數據庫為MySQL。 首
七、springboot整合Spring-data-jpa
ast bstr 核心 public html 特殊 ssi 除了 使用方法 1.Spring Data JPA是什麽 由Spring提供的一個用於簡化JPA開發的框架。可以在幾乎不用寫實現的情況下,實現對數據的訪問和操作。除了CRUD外,還包括如分頁、排序等一些常用的
【Spring Boot】(24)、Spring Boot中使用快取之Spring快取
1、快取依賴 只要新增如下依賴,即可使用快取功能。 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter
jasypt 整合spring、spring boot 加密
簡介 1、應用場景 針對properties和xml配置檔案的敏感內容進行加密處理(比如資料庫連線密碼,通訊祕鑰) 2、jasypt是一個java實現的安全框架 spring 配置 1、使用spring mvc整合,可繼承 Proper
Hibernate_day02---實體類操作、物件狀態、一級快取、事務操作、API
一、實體類編寫規則 1)實體類裡面屬性私有的 2)私有屬性使用公開的set和get方法操作 3)要求實體類有屬性作為唯一值(一般使用id值) 4)實體類屬性建議不使用基本資料型別,使用基本資料型別對應的包裝類 應用環境:可以解決區分出 值為零(score=0)和值不存在(
Hibernate + ehcache 整合 使用快取
為什麼需要快取 因為可以拉高程式的效能 什麼樣的資料需要快取 很少被修改或根本不改的資料 業務場景比如:耗時較高的統計分析sql、電話賬單查詢sql等 ehcache是什麼 Ehcache 是現在最流行的純Java開源快取框架,配置簡單、結構清晰、功能強大 注1
CXF實現簡單webservice應用、整合spring釋出到tomcat
前言 Apache CXF提供了用於方便地構建和開發WebService的可靠基礎架構。它允許建立高效能和可擴充套件的服務,可以部署在Tomcat和基於spring的輕量級容器中,也可以部署在更高階的伺服器上,例如Jboss、WebSphere或WebLogic。下面將建立一個簡單的we
spring、MVC整合spring-data-jpa
jar檔案 <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId>
SSM的環境搭建(整合Spring、SpringMVC、Mybatis框架)
本案例基於開發工具IDEA、MySQL,模擬查詢學生類的資訊 專案模組圖: MySQL中Student表 (1)新建一個maven的web-app專案 (2)新建test、java、resources資料夾,並對檔案進行標記 (3)將controller(控制包)、mapper