Ehcache缓存

Ehcache缓存

一 . 介绍
Ehcache是现在最流行的纯java开源缓存框架,配置简单,结构清晰,功能强大。
二 . 特性
三 . 使用

  1. 加入jar包

    
    	com.googlecode.ehcache-spring-annotations
    	ehcache-spring-annotations
    	1.1.2
    
    
    	cglib
    	cglib-nodep
    	3.1
    
    
    	net.sf.ehcache
    	ehcache-core
    	2.1.0
    
    
  2. ehcache.xml

   
     
            
            
            
    

timeToLiveSeconds=“600” : 缓存自创建日期起至失效时的间隔时间;

  1. 在spring配置文件中配置










 
  1. 在service接口上写@Cacheable注解
   @Cacheable(value="testTable")
    	List
GetDataByTableName();

你可能感兴趣的:(java)