一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|編程技術|正則表達式|

服務器之家 - 編程語言 - JAVA教程 - Spring搭配Ehcache實例解析

Spring搭配Ehcache實例解析

2020-07-05 13:41我是干勾魚 JAVA教程

這篇文章主要為大家詳細介紹了Spring搭配Ehcache實例,具有一定的參考價值,感興趣的小伙伴們可以參考一下

1 Ehcache簡介

EhCache 是一個純Java的進程內緩存框架,具有快速、精干等特點,是Hibernate中默認的CacheProvider。

Ehcache是一種廣泛使用的開源Java分布式緩存。主要面向通用緩存,Java EE和輕量級容器。它具有內存和磁盤存儲,緩存加載器,緩存擴展,緩存異常處理程序,一個gzip緩存servlet過濾器,支持REST和SOAP api等特點。

Ehcache最初是由Greg Luck于2003年開始開發。2009年,該項目被Terracotta購買。軟件仍然是開源,但一些新的主要功能(例如,快速可重啟性之間的一致性的)只能在商業產品中使用,例如Enterprise EHCache and BigMemory。維基媒體Foundationannounced目前使用的就是Ehcache技術。

總之Ehcache還是一個不錯的緩存技術,我們來看看Spring搭配Ehcache是如何實現的。

2 Spring搭配Ehcache

系統結果如下:

Spring搭配Ehcache實例解析

3 具體配置介紹

有這幾部分的結合:

src:java代碼,包含攔截器,調用接口,測試類

src/cache-bean.xml:配置Ehcache,攔截器,以及測試類等信息對應的bean

src/ehcache.xml:Ehcache緩存配置信息

WebRoot/lib:庫

4 詳細內容介紹

4.1 src

4.1.1 攔截器

代碼中首先配置了兩個攔截器:

第一個攔截器為:

com.test.ehcache.CacheMethodInterceptor

內容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.test.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.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
 
public class CacheMethodInterceptor implements MethodInterceptor,
 InitializingBean {
 
 private Cache cache;
 
 public void setCache(Cache cache) {
 this.cache = cache;
 }
 
 public CacheMethodInterceptor() {
 super();
 }
 
 /**
 * 攔截ServiceManager的方法,并查找該結果是否存在,如果存在就返回cache中的值,
 * 否則,返回數據庫查詢結果,并將查詢結果放入cache
 */
 public Object invoke(MethodInvocation invocation) throws Throwable {
 //獲取要攔截的類
 String targetName = invocation.getThis().getClass().getName();
 //獲取要攔截的類的方法
 String methodName = invocation.getMethod().getName();
 //獲得要攔截的類的方法的參數
 Object[] arguments = invocation.getArguments();
 Object result;
 
 //創建一個字符串,用來做cache中的key
 String cacheKey = getCacheKey(targetName, methodName, arguments);
 //從cache中獲取數據
 Element element = cache.get(cacheKey);
 
 if (element == null) {
 //如果cache中沒有數據,則查找非緩存,例如數據庫,并將查找到的放入cache
 
  result = invocation.proceed();
  //生成將存入cache的key和value
  element = new Element(cacheKey, (Serializable) result);
  System.out.println("-----進入非緩存中查找,例如直接查找數據庫,查找后放入緩存");
  //將key和value存入cache
  cache.put(element);
 } else {
 //如果cache中有數據,則查找cache
 
  System.out.println("-----進入緩存中查找,不查找數據庫,緩解了數據庫的壓力");
 }
 return element.getValue();
 }
 
 /**
 * 獲得cache的key的方法,cache的key是Cache中一個Element的唯一標識,
 * 包括包名+類名+方法名,如:com.test.service.TestServiceImpl.getObject
 */
 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();
 }
 
 /**
 * implement InitializingBean,檢查cache是否為空 70
 */
 public void afterPropertiesSet() throws Exception {
 Assert.notNull(cache,
  "Need a cache. Please use setCache(Cache) create it.");
 }
 
}

CacheMethodInterceptor用來攔截以“get”開頭的方法,注意這個攔截器是先攔截,后執行原調用接口。

還有一個攔截器:

com.test.ehcache.CacheAfterReturningAdvice

具體內容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.test.ehcache;
 
import java.lang.reflect.Method;
import java.util.List;
 
import net.sf.ehcache.Cache;
 
import org.springframework.aop.AfterReturningAdvice;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
 
public class CacheAfterReturningAdvice implements AfterReturningAdvice,
 InitializingBean {
 
 private Cache cache;
 
 public void setCache(Cache cache) {
 this.cache = cache;
 }
 
 public CacheAfterReturningAdvice() {
 super();
 }
 
 public void afterReturning(Object arg0, Method arg1, Object[] arg2,
  Object arg3) throws Throwable {
 String className = arg3.getClass().getName();
 List list = cache.getKeys();
 for (int i = 0; i < list.size(); i++) {
  String cacheKey = String.valueOf(list.get(i));
  if (cacheKey.startsWith(className)) {
  cache.remove(cacheKey);
  System.out.println("-----清除緩存");
  }
 }
 }
 
 public void afterPropertiesSet() throws Exception {
 Assert.notNull(cache,
  "Need a cache. Please use setCache(Cache) create it.");
 }
 
}

CacheAfterReturningAdvice用來攔截以“update”開頭的方法,注意這個攔截器是先執行原調用接口,后被攔截。

4.1.2 調用接口

接口名稱為:

com.test.service.ServiceManager

具體內容如下:

?
1
2
3
4
5
6
7
8
9
package com.test.service;
 
import java.util.List;
 
public interface ServiceManager {
 public List getObject();
 
 public void updateObject(Object Object);
}

實現類名稱為:

com.test.service.ServiceManagerImpl

具體內容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.test.service;
 
import java.util.ArrayList;
import java.util.List;
 
public class ServiceManagerImpl implements ServiceManager {
 
 @Override
 public List getObject() {
 System.out.println("-----ServiceManager:緩存Cache內不存在該element,查找數據庫,并放入Cache!");
 
 return null;
 }
 
 @Override
 public void updateObject(Object Object) {
 System.out.println("-----ServiceManager:更新了對象,這個類產生的cache都將被remove!");
 }
 
}

4.1.3 測試類

測試類名稱為:

com.test.service.TestMain

具體內容為:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.test.service;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class TestMain {
 
 public static void main(String[] args) {
 
 String cacheString = "/cache-bean.xml";
 ApplicationContext context = new ClassPathXmlApplicationContext(
  cacheString);
 //獲取代理工廠proxyFactory生成的bean,以便產生攔截效果
 ServiceManager testService = (ServiceManager) context.getBean("proxyFactory");
 
 // 第一次查找
 System.out.println("=====第一次查找");
 testService.getObject();
 
 // 第二次查找
 System.out.println("=====第二次查找");
 testService.getObject();
 
 // 執行update方法(應該清除緩存)
 System.out.println("=====第一次更新");
 testService.updateObject(null);
 
 // 第三次查找
 System.out.println("=====第三次查找");
 testService.getObject();
 }
}

此處要注意,獲取bean是通過代理工廠proxyFactory生產的bean,這樣才會有攔截效果。

能夠看出來,在測試類里面設置了四次調用,執行順序為:

第一次查找
第二次查找
第一次更新
第三次查找

4.2 src/cache-bean.xml

cache-bean.xml用來配置Ehcache,攔截器,以及測試類等信息對應的bean,內容如下:

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
 <!-- 引用ehCache 的配置-->
 <bean id="defaultCacheManager"
 class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
 <property name="configLocation">
  <value>ehcache.xml</value>
 </property>
 </bean>
 
 <!-- 定義ehCache的工廠,并設置所使用的Cache的name,即“com.tt” -->
 <bean id="ehCache" class="org.springframework.cache.ehcache.EhCacheFactoryBean">
 <property name="cacheManager">
  <ref local="defaultCacheManager" />
 </property>
 <!-- Cache的名稱 -->
 <property name="cacheName">
  <value>com.tt</value>
 </property>
 </bean>
 
 <!-- 創建緩存、查詢緩存的攔截器 -->
 <bean id="cacheMethodInterceptor" class="com.test.ehcache.CacheMethodInterceptor">
 <property name="cache">
  <ref local="ehCache" />
 </property>
 </bean>
 
 <!-- 更新緩存、刪除緩存的攔截器 -->
 <bean id="cacheAfterReturningAdvice" class="com.test.ehcache.CacheAfterReturningAdvice">
 <property name="cache">
  <ref local="ehCache" />
 </property>
 </bean>
 
 <!-- 調用接口,被攔截的對象 -->
 <bean id="serviceManager" class="com.test.service.ServiceManagerImpl" />
 
 <!-- 插入攔截器,確認調用哪個攔截器,攔截器攔截的方法名特點等,此處調用攔截器com.test.ehcache.CacheMethodInterceptor -->
 <bean id="cachePointCut"
 class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
 <!-- 加入切面,切面為當執行完print方法后,在執行加入的切面 -->
 <property name="advice">
  <ref local="cacheMethodInterceptor" />
 </property>
 <property name="patterns">
  <list>
  <!--
   ### .表示符合任何單一字元  
   ### +表示符合前一個字元一次或多次  
   ### *表示符合前一個字元零次或多次  
   ### \Escape任何Regular expression使用到的符號  
  -->  
  <!-- .*表示前面的前綴(包括包名),意思是表示getObject方法-->
  <value>.*get.*</value>
  </list>
 </property>
 </bean>
 
 <!-- 插入攔截器,確認調用哪個攔截器,攔截器攔截的方法名特點等,此處調用攔截器com.test.ehcache.CacheAfterReturningAdvice -->
 <bean id="cachePointCutAdvice"
 class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
 <property name="advice">
  <ref local="cacheAfterReturningAdvice" />
 </property>
 <property name="patterns">
  <list>
  <!-- .*表示前面的前綴(包括包名),意思是updateObject方法-->
  <value>.*update.*</value>
  </list>
 </property>
 </bean>
 
 <!-- 代理工廠 -->
 <bean id="proxyFactory" class="org.springframework.aop.framework.ProxyFactoryBean">
 <!-- 說明調用接口bean名稱 -->
 <property name="target">
  <ref local="serviceManager" />
 </property>
 <!-- 說明攔截器bean名稱 -->
 <property name="interceptorNames">
  <list>
  <value>cachePointCut</value>
  <value>cachePointCutAdvice</value>
  </list>
 </property>
 </bean>
</beans>

各個bean的內容都做了注釋說明,值得注意的是,不要忘了代理工廠bean。

4.3 src/ehcache.xml

ehcache.xml中存儲Ehcache緩存配置的詳細信息,內容如下:

?
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
 <!-- 緩存文件位置 -->
 <diskStore path="D:\\temp\\cache" />
 
 <defaultCache maxElementsInMemory="1000" eternal="false"
 timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" />
 <!-- 定義緩存文件信息,其中“com.tt”為緩存文件的名字 -->
 <cache name="com.tt" maxElementsInMemory="10000" eternal="false"
 timeToIdleSeconds="300000" timeToLiveSeconds="600000" overflowToDisk="true" />
</ehcache>

能夠看到緩存的存儲的存儲位置設置為“D:\temp\cache”,緩存名稱設置成了“com.tt”,如圖:

Spring搭配Ehcache實例解析

4.4 WebRoot/lib

所需的java庫,詳見開頭的系統結構圖片,此處略。

5 測試

執行測試類,測試結果如下:

Spring搭配Ehcache實例解析

通過執行結果我們能夠看出:

第一次查找被攔截后發現是首次攔截,還沒有緩存Cache,所以先執行一下原有接口類,得到要查詢的數據,有可能是通過數據庫查詢得到的,然后再生成Cache,并將查詢得到的數據放入Cache。

第二次查找被攔截后發現已經存在Cache,于是不再執行原有接口類,也就是不再查詢數據庫啦,直接通過Cache得到查詢數據。當然這里只是簡單打印一下。

然后是第一次更新,被攔截后所做的操作是將Cache中的數據全部存入數據庫,并將Cache刪除。

最后是第三次查詢,被攔截后又發現系統不存在Cache,于是執行原接口類查詢數據庫,創建Cache,并將新查詢得到的數據放入Cache。同第一次查詢的方式是一樣的。

至此我們就實現了Spring搭配Ehcache所需要完成的操作。

6 附件源代碼

附件源代碼可以從我的github網站上獲取。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:http://blog.csdn.net/dongdong9223/article/details/50538085

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲精品视频免费在线观看 | 91制片厂制作传媒网站 | 娇妻中日久久持久久 | 陈峰姚瑶全集小说无删节 | 亚洲国产精品91 | 国产a一级毛片午夜剧院 | 奇米777四色精品综合影院 | 极品主播的慰在线播放 | 日日碰日日操 | 天天色综合6 | 九九精品视频在线观看 | 国产日韩欧美综合一区二区三区 | 欧美成人aletta ocean | 973影院| 欧美办公室silkstocking | 亚州免费一级毛片 | 国产成人性色视频 | 精品国语对白精品自拍视 | 日本美女xx | 国产福利免费看 | 欧美日韩亚洲另类人人澡 | 毛毛片在线 | 国产精品久久久久久久牛牛 | 国产成人免费高清激情明星 | 久久99亚洲AV无码四区碰碰 | 亚洲乱亚洲23p女 | 日本精品一区二区三区 | 色99在线| 国产在线观看网站 | 日本老妇人乱视频 | 国产精品自产拍在线观看2019 | 青青草在视线频久久 | 久久久久青草大香线综合精品 | 60老妇性xxxxhd| 隔壁老王国产在线精品 | 国产午夜亚洲精品理论片不卡 | 亚洲欧美优优色在线影院 | 俄罗斯图书馆无打码久久 | 亚洲精品久久久打桩机 | 欧美色综合高清免费 | 午夜一级免费视频 |