您的位置:首页 > 编程语言 > Java开发

介绍 Spring 3.1 M1 中的缓存功能

2012-09-30 01:16 453 查看
该版本最酷的新特性就是引入全方位的缓存支持。Spring 3.1 提供了对已有的 Spring 应用增加缓存的支持,这个特性对应用本身来说是透明的,通过缓存抽象层,使得对已有代码的影响降低到最小。

该缓存机制针对于 Java 的方法,通过给定的一些参数来检查方法是否已经执行,Spring 将对执行结果进行缓存,而无需再次执行方法。

可通过下列配置来启用缓存的支持(注意使用新的schema):

[html] view plaincopy<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd">

<cache:annotation-driven />
</beans>
接下来可使用 @Cacheable 和 @CacheEvict 来对缓存进行操作。

[Java] view plaincopy@Cacheable("persons")
public Person profile(Long personId) { ... }
以上代码声明了一个名为 persons 的缓存区域,当调用该方法时,Spring 会检查缓存中是否存在 personId 对应的值。

也可以指定多个缓存区域,当你在应用有需要这样做的话:

[Java] view plaincopy@Cacheable({"persons", "profiles"})
public Person profile(Long personId) { ... }
当指定多个区域时,Spring 会一个个的检查,一旦某个区域存在指定值时则返回。

而 @CacheEvict 则用来从缓存中清除数据,例如:

[Java] view plaincopy@CacheEvict (value = "persons", allEntries=true)
public List<Person> listPersons()
@CacheEvict 可以指定清除缓存的条件。

还可以指定缓存的Key:

[Java] view plaincopy@Cacheable(value="persons", key="personId")
public Person profile(Long personId, Long groundId) { ... }
或者根据条件决定是否缓存:

[Java] view plaincopy@Cacheable(value="persons", condition="personId > 50")
public Person profile(Long personId) { ... }
缓存管理器的配置:

[XML] view plaincopy<!-- generic cache manager -->
<bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager">
<property name="caches">
<set>
<bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean" p:name="default"/>
<bean class="org.springframework.cache.concurrent.ConcurrentMapCacheFactoryBean" p:name="persons"/>
</set>
</property>
</bean>
基于 Ehcache 缓存的配置:

[XML] view plaincopy<bean id="cacheManager" class="org.springframework.cache.ehcache.EhcacheCacheManager" p:cache-manager="ehcache"/>

<!-- Ehcache library setup -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
[XML] view plaincopy
[XML] view plaincopy
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: