ecache的简单配置使用

Ehcache 与 spring 整合后的用法,下面是一个Ehcache.xml配置文件;

通用的缓存策略 可以用一个 cache;

复制代码
 1 xml version="1.0" encoding="UTF-8"?>
 2 <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3          xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
 4          updateCheck="false">
 5 
 6     
12 <diskStore path="java.io.tmpdir/Tmp_Ehcache" />
13     
31 <defaultCache
32         eternal="false"
33         maxElementsInMemory="1000"
34         overflowToDisk="false"
35         diskPersistent="false"
36         timeToIdleSeconds="0"
37         timeToLiveSeconds="600"
38         memoryStoreEvictionPolicy="LRU"
39 />
40     <cache
41             name="demo"
42             eternal="false"
43             maxElementsInMemory="100"
44             overflowToDisk="false"
45             diskPersistent="false"
46             timeToIdleSeconds="0"
47             timeToLiveSeconds="300"
48             memoryStoreEvictionPolicy="LRU"
49     />
50 
51 ehcache>
复制代码

其实缓存无非就是减少数据库的查询操作,接下来简单说下在 代码中的使用方法,

先把ehcache 配置到 spring中(下面是使用spring-boot)

复制代码
package com.config;

import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.ehcache.EhCacheCacheManager;
import org.springframework.cache.ehcache.EhCacheManagerFactoryBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;

import javax.persistence.Cache;

/**
 * Created by ding on 2017-04-25.
 */
@Configuration
@EnableCaching//标记启动缓存
public class CacheConfiguration {
    //ehcache 主要的管理器 EhcacheManager

    @Bean
    public EhCacheManagerFactoryBean ehCacheManagerFactoryBean(){
        EhCacheManagerFactoryBean factoryBean=new EhCacheManagerFactoryBean();
        factoryBean.setConfigLocation(new ClassPathResource("ehcache.xml"));
        factoryBean.setShared(true);//也说是说通过这个来设置cache的基地是这里的Spring独用,还是跟别的(如hibernate的Ehcache共享)
        return factoryBean;
    }

    @Bean
    public EhCacheCacheManager ehCacheCacheManager(EhCacheManagerFactoryBean factoryBean){
        System.out.println("CacheConfiguration.ehcacheManager()");
        return new EhCacheCacheManager(factoryBean.getObject());

    }


}
复制代码

 

留意下java代码@cacheAble 注解中的 value 对应 ehcache.xml中定义的cache的name属性(没有找到,就会用默认的配置)

@cacheAble 注解中的 key 就是缓存的key,调用方法的时候,就是根据这个key是否存在缓存中 从而决定是否进入方法

注意:@cacheable注解只能用在实现类中,不能再接口中使用!!!

复制代码
@Service
public class InfoServiceImpl {

   //value属性表示使用哪个缓存策略,缓存策略在ehcache.xml中
    //LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)
    public static final String DEMO_CACHE_NAME = "demo";//这个demo和ehcache中的 name对应

    //所有key 中的单引号 都不能少,不然会被识别成一个对象
    @Cacheable(value = DEMO_CACHE_NAME, key = "'info_'+#id")
    public String findNameById(Integer id) {
        //Cacheable 不存在这个key 才会进入方法
        System.out.println("没有走缓存:" + id);
        return "zhangsan";
    }

    @CacheEvict(value = DEMO_CACHE_NAME, key = "'info_'+#id")//清除缓存:是根据这个key来清理的,没有找到key对应的缓存就没清理了public void delete(Integer id) {
        //数据库删除操作……(略)
    }

    
    @CachePut(value = DEMO_CACHE_NAME, key = "'info_'+#infos.getId()")
    public String update(String str) {
        /*
        @cachePut 表示重新放入缓存对象,不管是否存在这个key的缓存,所以一定会进入方法
        */
        return str;
    }

   
}

你可能感兴趣的:(ecache的简单配置使用)