SpringBoot2.0整合Ehcache框架

MAVEN环境


		org.springframework.boot
		spring-boot-starter-parent
		2.0.0.RELEASE
	
	
		
		
			org.projectlombok
			lombok
		
		
		
			org.springframework.boot
			spring-boot-starter-web
		
		
			org.springframework.boot
			spring-boot-starter-tomcat
		
		
		
			org.apache.tomcat.embed
			tomcat-embed-jasper
		
		
		
			org.springframework.boot
			spring-boot-starter-log4j
			1.3.8.RELEASE
		
		
		
			org.springframework.boot
			spring-boot-starter-aop
		
		
		
			commons-lang
			commons-lang
			2.6
		
		
		
			org.apache.httpcomponents
			httpclient
		
		
		
			com.alibaba
			fastjson
			1.2.47
		
		
			javax.servlet
			jstl
		
		
			taglibs
			standard
			1.1.2
		
		
		
			org.springframework.boot
			spring-boot-starter-cache
		
		
		
			net.sf.ehcache
			ehcache
			2.9.1
		
		
			org.mybatis.spring.boot
			mybatis-spring-boot-starter
			1.1.1
		
		
		
			mysql
			mysql-connector-java
		
	

YML配置文件信息

###端口号配置
server:
  port: 8081
###数据库配置  
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/test
    username: root
    password: root
    driver-class-name: com.mysql.jdbc.Driver
    test-while-idle: true
    test-on-borrow: true
    validation-query: SELECT 1 FROM DUAL
    time-between-eviction-runs-millis: 300000
    min-evictable-idle-time-millis: 1800000
  # 缓存配置读取
  cache:
    type: ehcache
    ehcache:
      config: classpath:app2_ehcache.xml

App启动方式

添加注解:@EnableCaching  开启ehcache缓存模式

@MapperScan(basePackages = { "com.itmayiedu.mapper" })
@EnableCaching
@SpringBootApplication
public class App {

	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}

}

项目使用

@Cacheable  加了该注解的方法表示可以缓存

@CacheConfig 表示创建缓存配置,Key为userCache

@CacheConfig(cacheNames = "userCache")
public interface UserMapper {
	@Select("SELECT ID ,NAME,AGE FROM users where id=#{id}")
	@Cacheable
	List getUser(@Param("id") Long id);
}

EhCache配置

app1_ehcache.xml




	

	
	
	
	
	

	

	
	
	

	
	
		
		
		
	

app2_ehcache.xml




	

	
	
	

	

	

	
	
	

	
	
		
		
		
	

清除缓存

	@Autowired
	private CacheManager cacheManager; // EHCache中的缓存通知

	@RequestMapping("/remoKey")
	public void remoKey() {
		cacheManager.getCache("userCache").clear(); // 清除指定的缓存
	}

参数相关配置

1、diskStore :指定数据(.data and .index)存储位置,可指定磁盘中的文件夹位置期 The diskStore element is optional. It must be configured if you have overflowToDisk or diskPersistent enabled    for any cache. If it is not configured, a warning will be issues and java.io.tmpdir will be used.

 

2、defaultCache : 默认的管理策略

 

Ehcache 使用Map集合实现的 element 其实就是 key 和value

一、以下属性是必须的:

1、name: Cache的名称,必须是唯一的(ehcache会把这个cache放到HashMap里)。

2、maxElementsInMemory:在内存中缓存的element的最大数目。

3、maxElementsOnDisk:在磁盘上缓存的element的最大数目,默认值为0,表示不限制。

  4、eternal:设定缓存的elements是否永远不过期。如果为true,则缓存的数据始终有效,如果为false那么还要根据timeToIdleSeconds,timeToLiveSeconds判断。

  5、overflowToDisk: 如果内存中数据超过内存限制,是否要缓存到磁盘上。

二、以下属性是可选的:

  1、timeToIdleSeconds: 对象空闲时间,指对象在多长时间没有被访问就会失效。只对eternal为false的有效。默认值0,表示一直可以访问。

  2、timeToLiveSeconds: 对象存活时间,指对象从创建到失效所需要的时间。只对eternal为false的有效。默认值0,表示一直可以访问。

  3、diskPersistent: 是否在磁盘上持久化。指重启jvm后,数据是否有效。默认为false。

  4、diskExpiryThreadIntervalSeconds: 对象检测线程运行时间间隔。标识对象状态的线程多长时间运行一次。

  5、diskSpoolBufferSizeMB: DiskStore使用的磁盘大小,默认值30MB。每个cache使用各自的DiskStore。

  6、memoryStoreEvictionPolicy: 如果内存中数据超过内存限制,向磁盘缓存时的策略。默认值LRU,可选FIFO、LFU。

你可能感兴趣的:(缓存,redis)