1. 程式人生 > >Spring基於註解的快取配置--web應用例項

Spring基於註解的快取配置--web應用例項

現在介紹一下如何在基於註解springMVC的web應用中使用註解快取,其實很簡單,就是將springMVC配置檔案與快取註解檔案一起宣告到context中就OK了。

下面我就來構建一個基於spring註解小型的web應用,這裡我使用EHCache來作為快取方案。

首先來看一下目錄結構,如下:

 

jar依賴:

ehcache-core-1.7.2.jar 
jakarta-oro-2.0.8.jar 
slf4j-api-1.5.8.jar 
slf4j-jdk14-1.5.8.jar 
cglib-nodep-2.1_3.jar 
commons-logging.jar 
log4j-1.2.15.jar 
spring-modules-cache.jar 
spring.jar 
jstl.jar

standard.jar 

接著我們來編寫web.xml

Xml程式碼  收藏程式碼
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.     id="WebApp_ID" version="2.4"  
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    >  
  5.     <display-name>SpringCacheWeb</display-name>  
  6.     <!-- 由spring載入log4j -->  
  7.     <context-param>  
  8.         <param-name>log4jConfigLocation</param-name>  
  9.         <param-value>classpath:log4j.properties</param-value>  
  10.     </context-param>  
  11.     <!-- 宣告spring配置檔案 -->  
  12.     <context-param>  
  13.         <param-name>contextConfigLocation</param-name>  
  14.         <param-value>  
  15.             /WEB-INF/spring-servlet.xml  
  16.         </param-value>  
  17.     </context-param>  
  18.     <!-- 使用UTF-8編碼 -->  
  19.     <filter>  
  20.         <filter-name>Set Character Encoding</filter-name>  
  21.         <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
  22.         <init-param>  
  23.             <param-name>encoding</param-name>  
  24.             <param-value>UTF-8</param-value>  
  25.         </init-param>  
  26.     </filter>  
  27.     <filter-mapping>  
  28.         <filter-name>Set Character Encoding</filter-name>  
  29.         <url-pattern>*.do</url-pattern>  
  30.     </filter-mapping>  
  31.     <!-- 負責初始化log4j-->  
  32.     <listener>  
  33.         <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>  
  34.     </listener>  
  35.     <!-- 負責初始化spring上下文-->  
  36.     <listener>  
  37.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  38.     </listener>  
  39.     <!-- springMVC控制器-->  
  40.     <servlet>  
  41.         <servlet-name>spring</servlet-name>  
  42.         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>  
  43.         <load-on-startup>1</load-on-startup>  
  44.     </servlet>  
  45.     <servlet-mapping>  
  46.         <servlet-name>spring</servlet-name>  
  47.         <url-pattern>*.do</url-pattern>  
  48.     </servlet-mapping>  
  49.     <session-config>  
  50.         <session-timeout>10</session-timeout>  
  51.     </session-config>  
  52.     <welcome-file-list>  
  53.         <welcome-file>index.jsp</welcome-file>  
  54.         <welcome-file>index.html</welcome-file>  
  55.         <welcome-file>index.htm</welcome-file>  
  56.     </welcome-file-list>  
  57. </web-app>  

接著我們來編寫spring-servlet.xml

Xml程式碼  收藏程式碼
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
  4.     xmlns:context="http://www.springframework.org/schema/context"  
  5.     xmlns:ehcache="http://www.springmodules.org/schema/ehcache"  
  6.     xsi:schemaLocation="  
  7.             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  8.             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  9.             http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd"  
  10.             default-lazy-init="true">  
  11.     <!--啟用註解   定義元件查詢規則 -->  
  12.     <context:component-scan base-package="com.netqin">  
  13.         <context:include-filter type="annotation"  
  14.             expression="org.springframework.stereotype.Controller" />  
  15.         <context:include-filter type="annotation"  
  16.             expression="org.springframework.stereotype.Service" />  
  17.         <context:include-filter type="annotation"  
  18.             expression="org.springframework.stereotype.Repository" />  
  19.     </context:component-scan>  
  20.     <!-- 檢視查詢器 -->  
  21.     <bean id="viewResolver"  
  22.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  23.         <property name="viewClass"  
  24.             value="org.springframework.web.servlet.view.JstlView">  
  25.         </property>  
  26.         <property name="prefix" value="/WEB-INF/jsp/"></property>  
  27.         <property name="suffix" value=".jsp"></property>  
  28.     </bean>  
  29.     <!-- 載入ehcache快取配置檔案   
  30.     說明:在這裡我遇到了這樣一個問題,當使用@Service等註解的方式將類宣告到配置檔案中時,  
  31.     就需要將快取配置import到主配置檔案中,否則快取會不起作用  
  32.     如果是通過<bean>宣告到配置檔案中時,  
  33.     則只需要在web.xml的contextConfigLocation中加入applicationContext-ehcache.xml即可,  
  34.     不過還是推薦使用如下方式吧,因為這樣不會有任何問題  
  35.     -->  
  36.     <import resource="classpath:applicationContext-ehcache.xml"/>  
  37. </beans>  

ok,我們接著編寫applicationContext-ehcache.xml,還記得之前介紹的基於名稱空間的配置嗎,如下:

Xml程式碼  收藏程式碼
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ehcache="http://www.springmodules.org/schema/ehcache"  
  4.     xsi:schemaLocation="  
  5.             http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  6.             http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd">  
  7.     <ehcache:config configLocation="classpath:ehcache.xml"  
  8.         id="cacheProvider" />  
  9.     <ehcache:annotations providerId="cacheProvider">  
  10.         <ehcache:caching cacheName="testCache" id="testCaching" />  
  11.         <ehcache:flushing cacheNames="testCache" id="testFlushing" />  
  12.     </ehcache:annotations>  
  13. </beans>  

ehcache.xml如下:

Xml程式碼  收藏程式碼
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.     xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"  
  4.     monitoring="autodetect">  
  5.     <diskStore path="java.io.tmpdir"/>  
  6.     <defaultCache  
  7.             maxElementsInMemory="10000"  
  8.             eternal="false"  
  9.             timeToIdleSeconds="120"  
  10.             timeToLiveSeconds="120"  
  11.             overflowToDisk="true"  
  12.             maxElementsOnDisk="10000000"  
  13.             diskPersistent="false"  
  14.             diskExpiryThreadIntervalSeconds="120"  
  15.             memoryStoreEvictionPolicy="LRU"  
  16.             />  
  17.      <cache name="testCache"  
  18.            maxElementsInMemory="10000"  
  19.            maxElementsOnDisk="1000"  
  20.            eternal="false"  
  21.            overflowToDisk="true"  
  22.            diskSpoolBufferSizeMB="20"  
  23.            timeToIdleSeconds="300"  
  24.            timeToLiveSeconds="600"  
  25.            memoryStoreEvictionPolicy="LFU"  
  26.             />  
  27. </ehcache>  

ok,配置檔案都完成了,接著我們來編寫controller、service和dao

1.CacheDemoController:

Java程式碼  收藏程式碼