【Java EE 学习 78 上】【数据采集系统第十天】【Service使用Spring缓存模块】

时间:2021-04-12 19:15:17

一、需求分析

  调查问卷中或许每一个单击动作都会引发大量的数据库访问,特别是在参与调查的过程中,只是单击“上一页”或者“下一页”的按钮就会引发大量的查询,必须对这种问题进行优化才行。使用缓存策略进行查询缓存是降低数据库压力非常理想的方法,这里最起码能够有两种缓存方式:

  1.使用hibernate的二级缓存。

  2.使用spring自带的缓存模块进行查询缓存。使用spring自带的缓存模块功能必须要满足一下条件:

    (1)spring版本必须至少在3.1或以上,这里使用了spring3.1

    (2)必须要使用第三方缓存厂商的缓存支持,这里使用ehcache

  这里使用spring自带的缓存模块进行查询缓存。

二、集成spring的缓存模块实现对Service缓存代理,降低数据库压力

  1.引入类库

    [spring功能模块]

    spring-modules-cache.jar  

    [第三方缓存供应商] 

    backport-util-concurrent.jar
    com.springsource.org.apache.commons.logging-1.1.1.jar
    ehcache-1.5.0.jar
    jsr107cache-1.1.jar

  2.配置ehcache.xml配置文件,指定缓存的过期策略

 <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../config/ehcache.xsd">
<diskStore path="java.io.tmpdir"/>
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
maxElementsOnDisk="10000000"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
<!-- 自定义一个缓存策略 -->
<cache name="surveyCache"
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
maxElementsOnDisk="10000000"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
</ehcache>

    上面配置中的属性意思都比较简单,很容易理解,不赘述。

  3.通过配置文件配置spring的缓存模块

    首先,必须必须引入缓存的命名空间才行,由于eclipse中并没有自带该命名空间相关信息,所以需要外部引入xsd约束,引入方式:

    Window->preferences->XML->XML catalog->Add找到spring-cache-3.1.xsd文件添加进来即可,由于对应的location已经失效,所以建议使用本地文件协议file:///替代http协议。

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/aop file:///D:\程序\java\Spring\spring-framework-4.2.1\spring-framework-4.2.1.RELEASE\schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans file:///D:\程序\java\Spring\spring-framework-4.2.1\spring-framework-4.2.1.RELEASE\schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/cache file:///D:\程序\java\Spring\spring-framework-4.2.1\spring-framework-4.2.1.RELEASE\schema\cache/spring-cache-3.1.xsd
http://www.springframework.org/schema/tx file:///D:\程序\java\Spring\spring-framework-4.2.1\spring-framework-4.2.1.RELEASE\schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context file:///D:\程序\java\Spring\spring-framework-4.2.1\spring-framework-4.2.1.RELEASE\schema/context/spring-context-2.5.xsd">

  (1)ehcache工厂配置

 <!-- ehcacheManager工厂配置 -->
<bean id="ehcacheManager"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:ehcache.xml"></property>
</bean>

  (2)ehcache管理器配置

 <!-- ehcache管理器 -->
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager" ref="ehcacheManager"></property>
</bean>

  (3)配置key生成器,这里需要自定义一个key生成器类,先存档,之后详解

<!-- Key生成器 ,先存档 -->
<bean id="surveyKeyGenerator" class="com.kdyzm.cache.SurveykeyGenerator" />

  (4)定义缓存通知,该配置的作用就是确定针对什么样的方法进行缓存,针对什么样的方法清空缓存。

 <!-- 定义缓存通知 -->
<cache:advice id="cacheAdvice" cache-manager="cacheManager"
key-generator="surveyKeyGenerator"><!-- 这里需要配置key生成器 -->
<cache:caching cache="surveyCache">
<!-- 设置缓存的方法 -->
<cache:cacheable method="get*" />
<cache:cacheable method="load" />
<cache:cacheable method="find*" />
<cache:cacheable method="is*" /> <!-- 设置需要清空缓存的方法 -->
<cache:cache-evict method="save*" all-entries="true" />
<cache:cache-evict method="update*" all-entries="true" />
<cache:cache-evict method="delete*" all-entries="true" />
<cache:cache-evict method="batch*" all-entries="true" />
<cache:cache-evict method="create*" all-entries="true" />
<cache:cache-evict method="new*" all-entries="true" />
</cache:caching>
</cache:advice>

  (5)配置缓存AOP,创建切入点表达式,确定缓存对象的范围

    为了将缓存通知首先启动,将其order属性配置为0(并不是因为0才首先启动,只是相对于日志通知和事务通知来说其order属性值最小)。

 <aop:config>
<!-- 日志切入点 -->
<aop:pointcut
expression="(execution(* *..*Service.save*(..))
or execution(* *..*Service.update*(..))
or execution(* *..*Service.delete*(..))
or execution(* *..*Service.batch*(..))
or execution(* *..*Service.create*(..))
or execution(* *..*Service.new*(..))) and !bean(logService)"
id="loggerPointcut" />
<aop:pointcut expression="execution(* *..*Service.*(..))"
id="txPointcut" />
<!-- 必须配置order属性,使用该属性可以改变配置的通知的加载顺序,order值越大,优先级越高 必须让事务的通知放到后面,让日志的通知先执行,这样才能在执行完成日志的通知后事务确保能够结束。
order值越小,优先级越高 为了解决事务没有结束的问题,必须同时修改解除绑定的时间 -->
<aop:advisor advice-ref="cacheAdvice"
pointcut="execution(* com.kdyzm.service.SurveyService.*(..)) or
execution(* com.kdyzm.service.PageService.*(..)) or
execution(* com.kdyzm.service.QuestionService.*(..)) or
execution(* com.kdyzm.service.AnswerService.*(..))" order="0" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"
order="2" />
<aop:aspect id="loggerAspect" ref="logger" order="1">
<aop:around method="record" pointcut-ref="loggerPointcut" />
</aop:aspect>
</aop:config>

  这里对调查相关的所有Service中的相关方法都进行了代理缓存。

  4.如何自定义key生成器

    配置文件中有一个key生成器的配置,该配置的作用就是根据当前执行的方法环境(方法名、参数列表、类名)计算出来唯一的标识符(key值),如果该标识符已经存在,则缓存管理器就会调用缓存中的数据否则就执行目标方法并将目标方法的查询结果缓存起来。

 package com.kdyzm.cache;

 import java.lang.reflect.Method;

 import org.springframework.cache.interceptor.KeyGenerator;

 /**
* 自定义key生成器
* @author kdyzm
*
*/
public class SurveykeyGenerator implements KeyGenerator{ //什么对象调用的什么方法,参数列表是什么
@Override
public Object generate(Object arg0, Method arg1, Object... arg2) {
String targetCode=arg0.getClass().getSimpleName()+"["+arg0.hashCode()+"]";    //arg0是类
String methodName=arg1.getName();                            //arg1是方法
if(arg2!=null){                                       //arg2是参数列表
StringBuffer stringBuffer=new StringBuffer();
stringBuffer.append("(");
for(int i=0;i<arg2.length;i++){
stringBuffer.append(arg2[i].toString());
stringBuffer.append(",");
}
stringBuffer.append(")");
targetCode= targetCode+"."+methodName+stringBuffer.toString();
System.out.println(targetCode);
return targetCode;
}
targetCode= targetCode+"."+methodName+"()";
System.out.println(targetCode);
return targetCode;
}
}

三、测试效果

  1.在主页上单击参与调查,查看后台

  【Java EE 学习 78 上】【数据采集系统第十天】【Service使用Spring缓存模块】

  清空控制台,重新单击一次“参与调查”超链接,再次查看后台,这时候就会发现没有SQL语句发出了(手要快,不要超过120秒,之前配置的ehcach.xml配置文件中声明了如果超过120s没用的话就会清空缓存,所以还是会发出SQL查询语句)

  2.测试参与调查的过程中的缓存效果。

    这里需要创建多个调查页,在翻页的过程中查看缓存的效果,这里我的调查1中一共有三页。

    (1)单击调查1,依次单击下一页,直到最后一页,观察控制台打印,发现不断地有SQL查询发出

  【Java EE 学习 78 上】【数据采集系统第十天】【Service使用Spring缓存模块】

  【Java EE 学习 78 上】【数据采集系统第十天】【Service使用Spring缓存模块】

    (2)单击上一页、直到第一页,还是发现不断的有查询发出。

    (3)从第一页单击“下一页”直到最后一页,发现不再有查询发出,单击上一页还是没有发现有SQL语句发出,证明spring缓存配置成功。

  【Java EE 学习 78 上】【数据采集系统第十天】【Service使用Spring缓存模块】