- 浏览: 948577 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (423)
- mysql (37)
- hibernate (3)
- struts (9)
- spring (33)
- dom4j (2)
- junit (0)
- exception (1)
- 随笔杂谈 (12)
- google app engine (1)
- XMPP (1)
- OAuth安全授权 (1)
- 版本控制 (8)
- 心情感悟 (0)
- core java (19)
- log4j (7)
- jquery (12)
- javascript (10)
- 网站性能优化及工具 (11)
- 服务器架设配置等 (38)
- EXT (4)
- 正则表达式 (5)
- 日志统计分析 (2)
- htmlparse (4)
- httpclient (5)
- java随笔 (5)
- dhtmlxtree (1)
- freemarke (5)
- memcached (6)
- javamail (5)
- Linux命令 (10)
- 应用监控cpu web jdbc等 (4)
- jmagick (9)
- 第三方缓存策略 (9)
- ORM (2)
- hadoop (2)
- 大数据量处理 (8)
- 经典 (1)
- 权限设计 (1)
- andriod (1)
- mybatis (12)
- redis (24)
- 数据结构_算法 (5)
- 分布式系统 (1)
- php (1)
- 网络编程 (3)
- 服务器部署 (3)
- ios (2)
- IM (23)
- mina (1)
- 视讯和语音 (1)
- 代码生成 (1)
- 架构 (4)
- 建模工具 (1)
- oracle (4)
- solr (10)
- 构建工具 (7)
- html5 (1)
- nginx (5)
- css (1)
- 大数据-分布式 (2)
- 设计模式 (2)
- mq (2)
- jvm调优 (8)
- 并发编程 (2)
- 搜索引擎 (1)
- UML (2)
最新评论
-
天使建站:
jquery获取网页里多选框checkbox选中项的值的方法及 ...
JS jQuery分别获取选中的复选框值 -
abao1:
发现一个小问题 sortAndSave方法中的for循环 第二 ...
完整java实现外部排序 -
西巴拉古呀那:
Kafka分布式消息系统实战(与JavaScalaHadoop ...
消息系统kafka介绍 -
kafodaote:
Kafka分布式消息系统实战(与JavaScalaHadoop ...
消息系统kafka介绍 -
成大大的:
Kafka分布式消息系统实 ...
消息系统kafka介绍
本文将构建一个普通工程来说明spring注解缓存的使用方式,关于如何在web应用中使用注解缓存,请参见:
一.简介
在spring的modules包中提供对许多第三方缓存方案的支持,包括:
EHCache
OSCache(OpenSymphony)
JCS
GigaSpaces
JBoss Cache
等等。
将这些第三方缓存方案配置在spring中很简单,网上有许多介绍,这里只重点介绍如何配置基于注解的缓存配置。
本文将通过例举EHCache和OSCache详细介绍如何使用spring配置基于注解的缓存配置,注意这里的缓存是方法级的。
二.依赖
在开始介绍如何进行缓存配置前先介绍一下EHCache和OSCache的jar依赖。
EHCache:
ehcache-core-1.7.2.jar
jakarta-oro-2.0.8.jar
slf4j-api-1.5.8.jar
slf4j-jdk14-1.5.8.jar
OSCache:
oscache-2.4.1.jar
此外,两者都需要的jar如下:
cglib-nodep-2.1_3.jar
commons-logging.jar
log4j-1.2.15.jar
spring-modules-cache.jar
spring.jar
三.配置
两种缓存在spring配置文件中都可以使用两种配置方式,一种是spring2.0以前的完全基于bean的复杂配置,一种是使用后来的基于命名空间的简单配置,两种配置效果相同,分别介绍如下:
EHCache:
1)普通配置
- <? xml version = "1.0" encoding = "UTF-8" ?>
- < beans xmlns = "http://www.springframework.org/schema/beans"
- xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation ="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd">
- <!-- aop代理,这个是必须地,否则缓存不起作用 -->
- < bean id = "autoproxy"
- class = "org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
- <!-- EhCache 管理工厂 用于指定ehcache配置文件路径 -->
- < bean id = "cacheManager"
- class = "org.springframework.cache.ehcache.EhCacheManagerFactoryBean" >
- < property name = "configLocation" value = "classpath:ehcache.xml" />
- </ bean >
- < bean id = "cacheProviderFacade" class = "org.springmodules.cache.provider.ehcache.EhCacheFacade" >
- < property name = "cacheManager" ref = "cacheManager" />
- </ bean >
- <!-- 1.5+ Annotation 基于注解查找被缓存的业务方法 -->
- < bean id = "cachingAttributeSource"
- class = "org.springmodules.cache.annotations.AnnotationCachingAttributeSource" > </ bean >
- <!-- 缓存拦截器:定义了缓存模块,ehcache只需要指定配置文件中的缓存名称 -->
- < bean id = "cachingInterceptor"
- class = "org.springmodules.cache.interceptor.caching.MetadataCachingInterceptor" >
- < property name = "cacheProviderFacade" ref = "cacheProviderFacade" />
- < property name = "cachingAttributeSource" ref = "cachingAttributeSource" />
- < property name = "cachingModels" >
- < props >
- < prop key = "testCaching" > cacheName = testCache </ prop >
- </ props >
- </ property >
- </ bean >
- <!-- 基于注解查找缓存业务方法的AOP通知器 -->
- < bean id = "cachingAttributeSourceAdvisor"
- class = "org.springmodules.cache.interceptor.caching.CachingAttributeSourceAdvisor" >
- < constructor-arg ref = "cachingInterceptor" />
- </ bean >
- <!-- 基于注解查找触发缓存刷新动作的业务方法 -->
- < bean id = "flushingAttributeSource"
- class = "org.springmodules.cache.annotations.AnnotationFlushingAttributeSource" > </ bean >
- <!-- 刷新拦截器:定义了刷新策略,基于那个模块ID,刷新相应的缓存 -->
- < bean id = "flushingInterceptor"
- class = "org.springmodules.cache.interceptor.flush.MetadataFlushingInterceptor" >
- < property name = "cacheProviderFacade" ref = "cacheProviderFacade" />
- < property name = "flushingAttributeSource" ref = "flushingAttributeSource" />
- < property name = "flushingModels" >
- < map >
- < entry key = "testFlushing" >
- < bean
- class = "org.springmodules.cache.provider.ehcache.EhCacheFlushingModel" >
- < property name = "cacheNames" >
- < list >
- < value > testCache </ value >
- </ list >
- </ property >
- <!-- 报错,应该是不能直接设置cacheName
- < property name = "cacheName" value = "testCache" />
- -->
- </ bean >
- </ entry >
- </ map >
- </ property >
- </ bean >
- <!-- 基于注解查找刷新缓存业务方法的AOP通知器 -->
- < bean id = "flushingAttributeSourceAdvisor"
- class = "org.springmodules.cache.interceptor.flush.FlushingAttributeSourceAdvisor" >
- < constructor-arg ref = "flushingInterceptor" />
- </ bean >
- <!-- 测试对象 -->
- < bean id = "testCache" class = "com.TestCache" />
- </ beans >
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- aop代理,这个是必须地,否则缓存不起作用 --> <bean id="autoproxy" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" /> <!-- EhCache 管理工厂 用于指定ehcache配置文件路径 --> <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath:ehcache.xml" /> </bean> <bean id="cacheProviderFacade" class="org.springmodules.cache.provider.ehcache.EhCacheFacade"> <property name="cacheManager" ref="cacheManager" /> </bean> <!-- 1.5+ Annotation 基于注解查找被缓存的业务方法 --> <bean id="cachingAttributeSource" class="org.springmodules.cache.annotations.AnnotationCachingAttributeSource"></bean> <!-- 缓存拦截器:定义了缓存模块,ehcache只需要指定配置文件中的缓存名称 --> <bean id="cachingInterceptor" class="org.springmodules.cache.interceptor.caching.MetadataCachingInterceptor"> <property name="cacheProviderFacade" ref="cacheProviderFacade" /> <property name="cachingAttributeSource" ref="cachingAttributeSource" /> <property name="cachingModels"> <props> <prop key="testCaching">cacheName=testCache</prop> </props> </property> </bean> <!-- 基于注解查找缓存业务方法的AOP通知器 --> <bean id="cachingAttributeSourceAdvisor" class="org.springmodules.cache.interceptor.caching.CachingAttributeSourceAdvisor"> <constructor-arg ref="cachingInterceptor" /> </bean> <!-- 基于注解查找触发缓存刷新动作的业务方法 --> <bean id="flushingAttributeSource" class="org.springmodules.cache.annotations.AnnotationFlushingAttributeSource"></bean> <!-- 刷新拦截器:定义了刷新策略,基于那个模块ID,刷新相应的缓存 --> <bean id="flushingInterceptor" class="org.springmodules.cache.interceptor.flush.MetadataFlushingInterceptor"> <property name="cacheProviderFacade" ref="cacheProviderFacade" /> <property name="flushingAttributeSource" ref="flushingAttributeSource" /> <property name="flushingModels"> <map> <entry key="testFlushing"> <bean class="org.springmodules.cache.provider.ehcache.EhCacheFlushingModel"> <property name="cacheNames"> <list> <value>testCache</value> </list> </property> <!-- 报错,应该是不能直接设置cacheName <property name="cacheName" value="testCache"/> --> </bean> </entry> </map> </property> </bean> <!-- 基于注解查找刷新缓存业务方法的AOP通知器 --> <bean id="flushingAttributeSourceAdvisor" class="org.springmodules.cache.interceptor.flush.FlushingAttributeSourceAdvisor"> <constructor-arg ref="flushingInterceptor" /> </bean> <!-- 测试对象 --> <bean id="testCache" class="com.TestCache"/> </beans>
2)命名空间配置
- <? xml version = "1.0" encoding = "UTF-8" ?>
- < beans xmlns = "http://www.springframework.org/schema/beans"
- xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns:ehcache = "http://www.springmodules.org/schema/ehcache"
- xsi:schemaLocation ="
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd">
- <!-- 这里可以不需要配置这个
- < bean id = "autoproxy" class = "org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
- -->
- < ehcache:config configLocation = "classpath:ehcache.xml"
- id = "cacheProvider" />
- < ehcache:annotations providerId = "cacheProvider" >
- < ehcache:caching cacheName = "testCache" id = "testCaching" />
- < ehcache:flushing cacheNames = "testCache" id = "testFlushing" />
- </ ehcache:annotations >
- < bean id = "testCache" class = "com.TestCache" />
- </ beans >
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ehcache="http://www.springmodules.org/schema/ehcache" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd"> <!-- 这里可以不需要配置这个 <bean id="autoproxy" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" /> --> <ehcache:config configLocation="classpath:ehcache.xml" id="cacheProvider" /> <ehcache:annotations providerId="cacheProvider"> <ehcache:caching cacheName="testCache" id="testCaching" /> <ehcache:flushing cacheNames="testCache" id="testFlushing" /> </ehcache:annotations> <bean id="testCache" class="com.TestCache"/> </beans>
OSCache:
1)普通配置
- <? xml version = "1.0" encoding = "UTF-8" ?>
- < beans xmlns = "http://www.springframework.org/schema/beans"
- xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation ="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd">
- <!-- 这个是必须地,否则缓存不起作用 -->
- < bean id = "autoproxy"
- class = "org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
- <!-- 缓存管理工厂:使用OSCache缓存管理,配置了OSCache使用的配置文件路径 -->
- < bean id = "cacheManager"
- class = "org.springmodules.cache.provider.oscache.OsCacheManagerFactoryBean" >
- < property name = "configLocation" value = "classpath:oscache.properties" />
- </ bean >
- <!-- 缓存提供:OSCache -->
- < bean id = "cacheProviderFacade" class = "org.springmodules.cache.provider.oscache.OsCacheFacade" >
- < property name = "cacheManager" ref = "cacheManager" />
- </ bean >
- <!-- 1.5+ Annotation 基于注解查找被缓存的业务方法 -->
- < bean id = "cachingAttributeSource"
- class = "org.springmodules.cache.annotations.AnnotationCachingAttributeSource" > </ bean >
- <!-- 缓存拦截器:定义了缓存模块,以及相应的刷新策略,以及缓存所属群组 -->
- < bean id = "cachingInterceptor"
- class = "org.springmodules.cache.interceptor.caching.MetadataCachingInterceptor" >
- < property name = "cacheProviderFacade" ref = "cacheProviderFacade" />
- < property name = "cachingAttributeSource" ref = "cachingAttributeSource" />
- < property name = "cachingModels" >
- < props >
- < prop key = "testCaching" > refreshPeriod = 86400 ; cronExpression = 0 1 * * *; groups = pb_test </ prop >
- </ props >
- </ property >
- </ bean >
- <!-- 基于注解查找缓存业务方法的AOP通知器 -->
- < bean id = "cachingAttributeSourceAdvisor"
- class = "org.springmodules.cache.interceptor.caching.CachingAttributeSourceAdvisor" >
- < constructor-arg ref = "cachingInterceptor" />
- </ bean >
- <!-- 基于注解查找触发缓存刷新动作的业务方法 -->
- < bean id = "flushingAttributeSource"
- class = "org.springmodules.cache.annotations.AnnotationFlushingAttributeSource" > </ bean >
- <!-- 刷新拦截器:定义了刷新策略,基于那个模块ID,刷新相应的缓存群组 -->
- < bean id = "flushingInterceptor"
- class = "org.springmodules.cache.interceptor.flush.MetadataFlushingInterceptor" >
- < property name = "cacheProviderFacade" ref = "cacheProviderFacade" />
- < property name = "flushingAttributeSource" ref = "flushingAttributeSource" />
- < property name = "flushingModels" >
- < props >
- < prop key = "testFlushing" > groups = pb_test </ prop >
- </ props >
- </ property >
- </ bean >
- <!-- 基于注解查找刷新缓存业务方法的AOP通知器 -->
- < bean id = "flushingAttributeSourceAdvisor"
- class = "org.springmodules.cache.interceptor.flush.FlushingAttributeSourceAdvisor" >
- < constructor-arg ref = "flushingInterceptor" />
- </ bean >
- < bean id = "testCache" class = "com.TestCache" />
- </ beans >
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!-- 这个是必须地,否则缓存不起作用 --> <bean id="autoproxy" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" /> <!-- 缓存管理工厂:使用OSCache缓存管理,配置了OSCache使用的配置文件路径 --> <bean id="cacheManager" class="org.springmodules.cache.provider.oscache.OsCacheManagerFactoryBean"> <property name="configLocation" value="classpath:oscache.properties" /> </bean> <!-- 缓存提供:OSCache --> <bean id="cacheProviderFacade" class="org.springmodules.cache.provider.oscache.OsCacheFacade"> <property name="cacheManager" ref="cacheManager" /> </bean> <!-- 1.5+ Annotation 基于注解查找被缓存的业务方法 --> <bean id="cachingAttributeSource" class="org.springmodules.cache.annotations.AnnotationCachingAttributeSource"></bean> <!-- 缓存拦截器:定义了缓存模块,以及相应的刷新策略,以及缓存所属群组 --> <bean id="cachingInterceptor" class="org.springmodules.cache.interceptor.caching.MetadataCachingInterceptor"> <property name="cacheProviderFacade" ref="cacheProviderFacade" /> <property name="cachingAttributeSource" ref="cachingAttributeSource" /> <property name="cachingModels"> <props> <prop key="testCaching">refreshPeriod=86400;cronExpression=0 1 * * *;groups=pb_test</prop> </props> </property> </bean> <!-- 基于注解查找缓存业务方法的AOP通知器 --> <bean id="cachingAttributeSourceAdvisor" class="org.springmodules.cache.interceptor.caching.CachingAttributeSourceAdvisor"> <constructor-arg ref="cachingInterceptor" /> </bean> <!-- 基于注解查找触发缓存刷新动作的业务方法 --> <bean id="flushingAttributeSource" class="org.springmodules.cache.annotations.AnnotationFlushingAttributeSource"></bean> <!-- 刷新拦截器:定义了刷新策略,基于那个模块ID,刷新相应的缓存群组 --> <bean id="flushingInterceptor" class="org.springmodules.cache.interceptor.flush.MetadataFlushingInterceptor"> <property name="cacheProviderFacade" ref="cacheProviderFacade" /> <property name="flushingAttributeSource" ref="flushingAttributeSource" /> <property name="flushingModels"> <props> <prop key="testFlushing">groups=pb_test</prop> </props> </property> </bean> <!-- 基于注解查找刷新缓存业务方法的AOP通知器 --> <bean id="flushingAttributeSourceAdvisor" class="org.springmodules.cache.interceptor.flush.FlushingAttributeSourceAdvisor"> <constructor-arg ref="flushingInterceptor" /> </bean> <bean id="testCache" class="com.TestCache"/> </beans>
2)命名空间配置
- <? xml version = "1.0" encoding = "UTF-8" ?>
- < beans xmlns = "http://www.springframework.org/schema/beans"
- xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns:oscache = "http://www.springmodules.org/schema/oscache"
- xsi:schemaLocation ="
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springmodules.org/schema/oscache http://www.springmodules.org/schema/cache/springmodules-oscache.xsd">
- <!-- 这里可以不需要配置这个
- < bean id = "autoproxy" class = "org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
- -->
- < oscache:config configLocation = "classpath:oscache.properties" id = "cacheProvider" />
- < oscache:annotations providerId = "cacheProvider" >
- < oscache:caching id = "testCaching" groups = "pb_test" cronExpression = "0 1 * * *" refreshPeriod = "86400" />
- < oscache:flushing id = "testFlushing" groups = "pb_test" />
- </ oscache:annotations >
- < bean id = "testCache" class = "com.TestCache" />
- </ beans >
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:oscache="http://www.springmodules.org/schema/oscache" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springmodules.org/schema/oscache http://www.springmodules.org/schema/cache/springmodules-oscache.xsd"> <!-- 这里可以不需要配置这个 <bean id="autoproxy" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" /> --> <oscache:config configLocation="classpath:oscache.properties" id="cacheProvider"/> <oscache:annotations providerId="cacheProvider"> <oscache:caching id="testCaching" groups="pb_test" cronExpression="0 1 * * *" refreshPeriod="86400"/> <oscache:flushing id="testFlushing" groups="pb_test"/> </oscache:annotations> <bean id="testCache" class="com.TestCache"/> </beans>
四.注解
@Cacheable:声明一个方法的返回值应该被缓存
例如:@Cacheable(modelId = "testCaching")
@CacheFlush:声明一个方法是清空缓存的触发器
例如:@CacheFlush(modelId = "testCaching")
五.测试
这是用使用一个带有main函数的类来进行测试,代码如下:
- /*
- * COPYRIGHT Beijing NetQin-Tech Co.,Ltd. *
- ****************************************************************************
- * 源文件名: TestCache.java
- * 功能: (描述文件功能)
- * 版本: @version 1.0
- * 编制日期: 2010-2-24
- * 说明: (描述使用文件功能时的制约条件)
- * 修改历史: (主要历史变动原因及说明)
- * YYYY-MM-DD | Author | Change Description
- * 2010-2-24 | hanqunfeng | Created
- */
- package com;
- import net.sf.ehcache.CacheManager;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- import org.springmodules.cache.annotations.CacheFlush;
- import org.springmodules.cache.annotations.Cacheable;
- import com.opensymphony.oscache.general.GeneralCacheAdministrator;
- public class TestCache {
- /**
- * 描述 : <描述函数实现的功能>. <br>
- *<p>
- * @param args
- */
- static String context = null ;
- static ApplicationContext applicationContext;
- static {
- context = "applicationContext-ehcache.xml" ; //ehcache简单配置(命名空间)
- // context = "applicationContext-ehcache_full.xml";//ehcache完整配置
- // context = "applicationContext-oscache.xml";//oscache简单配置(命名空间)
- // context = "applicationContext-oscache_full.xml";//oscache完整配置
- applicationContext = new ClassPathXmlApplicationContext(context);
- }
- public static void main(String[] args) {
- TestCache test = (TestCache)applicationContext.getBean("testCache" );
- System.out.println(test.getName(0 ));
- System.out.println(test.getName(0 ));
- System.out.println(test.getName(0 ));
- test.flush();
- // test.OSFlushAll();
- // test.EHFlushAll();
- System.out.println(test.getName(0 ));
- System.out.println(test.getName(0 ));
- System.out.println(test.getName(0 ));
- }
- @Cacheable (modelId = "testCaching" )
- public String getName( int i){
- System.out.println("Processing testCaching" );
- return "nihao:" +i;
- }
- @CacheFlush (modelId = "testFlushing" )
- public void flush(){
- System.out.println("Processing testFlushing" );
- }
- /**
- * 描述 : <OSCache刷新全部缓存>. <br>
- *<p>
- 问 题:flushAll() 后不会再缓存数 据
-
<span class=
发表评论
-
各种数据库(oracle、mysql、sqlserver等)在Spring中数据源的配置和JDBC驱动包
2013-07-16 13:09 2826在开发基于数据库的应 ... -
springmvc rest框架搭建中遇到的问题-xml转换错误
2013-01-18 11:26 2004.bean to xml显示的xml不是我往Model ... -
spring3.5 mvc json view bug MappingJacksonJsonView
2013-01-18 11:27 1541在返回单一model的json的时候。 MappingJa ... -
Spring MVC的多视图解析器配置及与Freemarker的集成
2013-01-18 11:27 3683http://my249645546.iteye.com/ ... -
xStream完美转换XML、JSON
2013-01-17 16:02 1256http://www.cnblogs.com/hoojo/a ... -
SpringMVC 中整合JSON、XML视图一
2013-01-17 16:01 1371http://www.cnblogs.com/hoojo/a ... -
Spring MVC 之 视图解析器ResourceBundleViewResolver
2013-01-17 10:45 1277http://blog.csdn.net/q34982 ... -
spring3mvc自定义多视图解析器
2013-01-17 10:41 1663使用视图名后缀来判断选择相应的视图解析器自定义一个视图解析器 ... -
spring3.0.6 使用context:property-placeholder载不进属性
2012-12-15 14:43 1378我用spring3.0.6+mybatis3.0.6+myba ... -
Spring定时任务的多种使用方法总结
2012-10-18 09:48 1730这里使用的是Spring2.5,需要的jar包:spring. ... -
Spring3.0 + 自定义注解实现操作日志记录功能
2012-03-12 09:34 1491最近项目组长分配给我一个任务,让我完成一个操作日志的管理功能。 ... -
spring mvc例子
2012-03-11 11:35 2074使用拦截器 和Struts2一样,Spring MVC也可以 ... -
在 Spring Bean 內取得 HttpServletRequest
2011-10-11 16:13 1228使用 Java 去開發 Web 應用程式時,大部份時候都會使用 ... -
spring3+freemark自定义标签
2011-10-09 18:27 2753<bean id="viewResolver& ... -
OpenSessionInViewFilter作用及配置
2011-06-15 10:31 1335摘自:http://www.yybean.com/opense ... -
spring httpinvoke 例子
2011-04-21 17:15 1205http://ajava.org/course/open/11 ... -
使用 ActiveMQ 示例
2011-03-30 17:38 1366企业中各项目中相互协作的时候可能用得到消息通知机制。比如有 ... -
使用Spring HTTP invoker进行远程调用
2011-03-30 10:34 1695使用Spring HTTP invoker进行远程调用Spri ... -
Java Spring2.5 Remote Invoke HTTP Invoker远程调用
2011-03-30 08:42 1972近日,一个项目涉及到系统间接口调用,考虑到系统间用的都是j ... -
Spring AOP不能拦截同一个对象内方法的嵌套调用
2011-03-30 08:27 2294在开发基于 Spring 的应用的过程中碰到了一个 ...
相关推荐
Spring Cache 是 Spring 框架从 3.1 版本开始引入的一种注解驱动的缓存抽象,它提供了一种简单而灵活的方式来在应用程序中实现缓存功能,无需依赖特定的缓存实现,如 EhCache 或 OSCache。Spring Cache 的核心特性...
此外,ehcache能很好地与Spring框架集成,通过Spring的AOP(面向切面编程)可以方便地实现缓存注解,简化了缓存管理。例如,可以使用`@Cacheable`注解标记方法,使得该方法的返回结果被缓存。 **oscache** oscache...
Spring Cache 是 Spring 3.1 版本引入的一项重要特性,它不是一种具体的缓存实现(如 EHCache 或 OSCache),而是一种缓存使用的抽象层。通过在现有的业务代码上添加特定的注解,可以轻松地为方法调用添加缓存支持。...
**压缩包子文件的文件名称列表:** "s2sh_relation24_3KindsOf_Cache" 这个文件名暗示了可能是一个基于Struts2、Spring和Hibernate(简称S2SH)的项目,其中包含了关于三种类型的缓存的示例。这三种缓存可能指的是...
常见的第三方二级缓存插件有EHCache、OSCache等。 **缓存的范围** 包括事务范围、进程范围和集群范围。不同的范围适用于不同的应用场景,可以根据项目的实际需求选择合适的缓存策略。 - **事务范围**:每个事务有...
Spring Framework 3.1引入了一个新的特性——基于注解的缓存管理。这个特性使得开发者可以在不修改业务逻辑的情况下轻松地添加缓存支持。 #### 特点 - **抽象层**:Spring Cache提供了一个抽象层,允许开发者使用...
- **第三方缓存实现:** 如 Ehcache、OSCache 等,适用于更复杂的缓存需求。 **使用条件:** - 数据不会被第三方修改。 - 数据大小在可接受范围内。 - 数据更新频率较低。 - 同一数据被频繁访问。 - 非关键性数据...
- 第三方缓存实现:如EHCache、OSCache等。 #### 5. Hibernate 查询方式 - **SQL 查询:** 直接使用SQL语句进行查询。 - **Criteria API:** 提供了一种面向对象的方式来构建查询。 - **HQL(Hibernate Query ...
可以使用内置的缓存实现,也可以集成第三方缓存实现(如EHCache、OSCache等)。 - **延迟加载**:Hibernate支持延迟加载策略,只有在真正需要数据时才会加载,从而减少内存占用和提高性能。 - **类之间的关系实现**...
- **第三方缓存**:如 EhCache、OSCache 等。 #### 六、Hibernate 查询方式 **6.1 SQL 查询** 直接编写 SQL 语句进行查询。 **6.2 HQL 查询** - **属性查询**:针对实体类的属性进行查询。 - **参数查询**:使用...
- **第三方缓存实现**:如 Ehcache、OSCache 等。 #### 使用条件 - 数据不会被第三方修改。 - 数据大小在可接受范围内。 - 数据更新频率较低。 - 同一数据被系统频繁使用。 - 对于非关键数据,使用缓存可以提高...
- **第三方缓存实现:** 使用如 Ehcache、OSCache 等第三方库提供的缓存服务。 **使用二级缓存的条件:** - 数据不会被第三方修改。 - 数据大小在可接受范围内。 - 数据更新频率较低。 - 同一数据被系统频繁使用...
通过配置文件或注解,Spring可以自动装配bean,实现灵活的依赖注入。 3. Web MVC框架: Struts2 和 Spring MVC 是两种广泛使用的MVC(Model-View-Controller)框架,用于处理Web应用的业务逻辑。Struts2提供了一...
此外,还支持第三方缓存解决方案,如Ehcache和 OSCache。 5. API文档:在压缩包中的“doc”文件夹,应该包含了详细的API文档,帮助开发者理解并使用Hibernate的各种接口和类。这些文档通常包含方法描述、参数说明和...
5. **缓存支持**:Hibernate提供了二级缓存机制,通过第三方缓存提供者如Ehcache(`ehcache-core.jar`)或OSCache(`oscache.jar`)提高性能。这些缓存库使得数据能够在内存中被快速访问,减少对数据库的直接访问。 ...