EhCache缓存

2018-08-07  本文已影响0人  Jorvi

EhCache+Spring实现缓存

参考:
https://blog.csdn.net/u012106290/article/details/52154241
https://www.cnblogs.com/mxmbk/articles/5162813.html

首先,需要知道:
Spring本身没有实现缓存解决方案,但是对缓存管理功能提供了声明式的支持,能够与多种流行的缓存实现进行集成。

Spring内置多种缓存管理器,例如:SimpleCacheManager、EhCacheCacheManager、RedisCacheManager等。虽然底层的缓存方案各不相同,但是Spring声明缓存的方式没有什么差别(注解驱动缓存和XML配置缓存)。

Spring缓存机制:当我们在调用一个缓存方法时会把该方法参数和返回结果作为一个键值存放在缓存中,等到下次利用同样的参数调用该方法时将直接从缓存中获取结果。


示例

  1. ehcache的缓存配置(ehcache.xml)
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
  <!-- 磁盘缓存位置 -->
  <diskStore path="java.io.tmpdir" />

  <!-- 默认缓存 -->
  <defaultCache 
      maxElementsInMemory="1000" 
      eternal="false" 
      timeToIdleSeconds="120" 
      timeToLiveSeconds="120"
      overflowToDisk="false" />
    
  <!-- 自定义缓存 -->
  <cache 
      name="optionResourceCache" 
      maxElementsInMemory="1000" 
      maxElementsOnDisk="1000" 
      eternal="false" 
      timeToIdleSeconds="300"
      timeToLiveSeconds="300" 
      overflowToDisk="false" 
      memoryStoreEvictionPolicy="LRU" />
</ehcache>
  1. Spring配置ehcache(spring.xml)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:cache="http://www.springframework.org/schema/cache"
  xsi:schemaLocation="
        http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd
  ">

  <!-- 开启注解功能 -->
  <cache:annotation-driven cache-manager="myCacheManager" />
  <!-- cache manager -->
  <bean id="myCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
    <property name="cacheManager" ref="myCacheManagerFactory"></property>
  </bean>
  <!-- cache manager Factory -->
  <bean id="myCacheManagerFactory" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
    <property name="configLocation" value="classpath:/com/ehcache.xml" />
  </bean>

</beans>
  1. 利用注解使用缓存
public class OptionResourceService {
   /**
    * 查询数据并缓存
    */
    @Cacheable(value = "optionResourceCache", key = "#spaceName + '-' + #fieldName")
    public OptionResourceVO getField(String spaceName, String fieldName) {
        // 查询数据库获取数据
        OptionResourceVO result = dao.getField(spaceName,fieldName);
        return result;
    }
}

注解中:
value="optionResourceCache"必须与ehcache.xml中配置的缓存名保持一致,key="#spaceName + '-' + #fieldName" 为缓存的key,
函数的返回值OptionResourceVO为缓存的value。

第一次调用该方法时,会去查询数据库并将结果加入缓存(K-V),下次调用该方法时会先去缓存中根据key查找是否存在记录,如果存在直接返回结果,否则查询数据库并加入缓存。

上一篇下一篇

猜你喜欢

热点阅读