欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot手动使用EhCache的方法示例

程序员文章站 2023-01-15 09:15:15
springboot在annotation的层面实现了数据缓存的功能,基于spring的aop技术。所有的缓存配置只是在annotation层面配置,像声明式事务一样。...

springboot在annotation的层面实现了数据缓存的功能,基于spring的aop技术。所有的缓存配置只是在annotation层面配置,像声明式事务一样。

spring定义了cachemanager和cache接口统一不同的缓存技术。其中cachemanager是spring提供的各种缓存技术的抽象接口。而cache接口包含缓存的各种操作。

cachemanger

针对不同的缓存技术,需要实现不同的cachemanager,spring定义了如下的cachemanger实现。

cachemanger 描述
simplecachemanager 使用简单的collection来存储缓存,主要用于测试
concurrentmapcachemanager 使用concurrentmap作为缓存技术(默认)
noopcachemanager 测试用
ehcachecachemanager 使用ehcache作为缓存技术,以前在hibernate的时候经常用
guavacachemanager 使用google guava的guavacache作为缓存技术
hazelcastcachemanager 使用hazelcast作为缓存技术
jcachecachemanager 使用jcache标准的实现作为缓存技术,如apache commons jcs
rediscachemanager 使用redis作为缓存技术

常规的springboot已经为我们自动配置了ehcache、collection、guava、concurrentmap等缓存,默认使用concurrentmapcachemanager。springboot的application.properties配置文件,使用spring.cache前缀的属性进行配置。

application配置

spring.cache.type=#缓存的技术类型
spring.cache.cache-names=应用程序启动创建缓存的名称
spring.cache.ehcache.config=ehcache的配置文件位置
spring.cache.infinispan.config=infinispan的配置文件位置
spring.cache.jcache.config=jcache配置文件位置
spring.cache.jcache.provider=当多个jcache实现类时,指定选择jcache的实现类

入口类配置

加入注解 @enablecaching

缓存注解

注解 描述
@cacheable 在调用方法之前,首先应该在缓存中查找方法的返回值,如果这个值能够找到,就会返回缓存的值。否则,这个方法就会被调用,返回值会放到缓存之中。
@cacheput 将方法的返回值放到缓存中。在方法的调用前并不会检查缓存,方法始终都会被调用。
@cacheevict 在缓存中清除一个或多个条目。
@caching 分组的注解,能够同时应用多个其他的缓存注解。

手动使用ehcache

在实际开发过程中,存在不使用注解,需要自己添加缓存的情况。下面就以ehcache为例,简单写一下配置过程。

1. 添加依赖

引入springboot-cache和ehcache。需要注意,ehcache不需要配置version,springboot的根pom已经集成了。

  <!-- 缓存 -->
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-cache</artifactid>
  </dependency>
  <!-- ehcache -->
  <dependency>
   <groupid>net.sf.ehcache</groupid>
   <artifactid>ehcache</artifactid>
  </dependency>

2. 入口类配置

加入注解 @enablecaching

@springbootapplication
@enablecaching
public class demoapplication {
}

3. ehcache配置

在src\main\resources目录下,添加ehcache.xml文件,内容见文末。

4. application.application配置

# 配置ehcache缓存
spring.cache.type=ehcache
# 指定ehcache配置文件路径
spring.cache.ehcache.config=classpath:/ehcache.xml

5. 使用cache

注入springboot自动配置的bean,org.springframework.cache.cachemanager。

一个简单的测试类:

package com.bbf.frame.test;

import com.bbf.frame.application;
import org.apache.commons.lang3.stringutils;
import org.junit.test;
import org.junit.runner.runwith;
import org.springframework.boot.test.context.springboottest;
import org.springframework.cache.cache;
import org.springframework.cache.cachemanager;
import org.springframework.test.context.junit4.springjunit4classrunner;
import org.springframework.test.context.web.webappconfiguration;

import javax.annotation.resource;

@runwith(springjunit4classrunner.class)
@webappconfiguration
@springboottest(classes = application.class, webenvironment = springboottest.webenvironment.mock)
public class testcache {
 @resource
 private cachemanager cachemanager;

 @test
 public void cachetest() {
  // 显示所有的cache空间
  system.out.println(stringutils.join(cachemanager.getcachenames(), ","));
  cache cache = cachemanager.getcache("usercache");
  cache.put("key", "123");
  system.out.println("缓存成功");
  string res = cache.get("key", string.class);
  system.out.println(res);
 }
}

附录 ehcache.xml

<?xml version="1.0" encoding="utf-8"?>
<ehcache xmlns:xsi = "http://www.w3.org/2001/xmlschema-instance"
     xsi:nonamespaceschemalocation = "http://ehcache.org/ehcache.xsd"
     updatecheck = "false">

 <!-- 指定一个文件目录,当ehcache把数据写到硬盘上时,将把数据写到这个文件目录下 -->
 <diskstore path = "java.io.tmpdir"/>

 <!-- 默认的管理策略 -->
 <defaultcache
   eternal = "false"
   maxelementsinmemory = "10000"
   overflowtodisk = "true"
   diskpersistent = "false"
   timetoidleseconds = "120"
   timetoliveseconds = "120"
   diskexpirythreadintervalseconds = "120"
   memorystoreevictionpolicy = "lru"/>

 <!-- 此缓存最多可以存活timetoliveseconds秒,如果期间超过timetoidleseconds秒未访问,缓存失效 -->
 <cache
   name = "usercache"
   eternal = "false"
   maxelementsinmemory = "100"
   overflowtodisk = "false"
   diskpersistent = "false"
   timetoidleseconds = "120"
   timetoliveseconds = "180"
   memorystoreevictionpolicy = "lru"/>

 <!-- maxelementsinmemory 内存中最大缓存对象数,看着自己的heap大小来搞 -->
 <!-- eternal:true表示对象永不过期,此时会忽略timetoidleseconds和timetoliveseconds属性,默认为false -->
 <!-- maxelementsondisk:硬盘中最大缓存对象数,若是0表示无穷大 -->
 <!-- overflowtodisk:true表示当内存缓存的对象数目达到了maxelementsinmemory界限后,
 会把溢出的对象写到硬盘缓存中。注意:如果缓存的对象要写入到硬盘中的话,则该对象必须实现了serializable接口才行。-->
 <!-- diskspoolbuffersizemb:磁盘缓存区大小,默认为30mb。每个cache都应该有自己的一个缓存区。-->
 <!-- diskpersistent:是否缓存虚拟机重启期数据 -->
 <!-- diskexpirythreadintervalseconds:磁盘失效线程运行时间间隔,默认为120秒 -->

 <!-- timetoidleseconds: 设定允许对象处于空闲状态的最长时间,以秒为单位。当对象自从最近一次被访问后,
 如果处于空闲状态的时间超过了timetoidleseconds属性值,这个对象就会过期,
 ehcache将把它从缓存中清空。只有当eternal属性为false,该属性才有效。如果该属性值为0,
 则表示对象可以无限期地处于空闲状态 -->

 <!-- timetoliveseconds:设定对象允许存在于缓存中的最长时间,以秒为单位。当对象自从被存放到缓存中后,
 如果处于缓存中的时间超过了 timetoliveseconds属性值,这个对象就会过期,
 ehcache将把它从缓存中清除。只有当eternal属性为false,该属性才有效。如果该属性值为0,
 则表示对象可以无限期地存在于缓存中。timetoliveseconds必须大于timetoidleseconds属性,才有意义 -->

 <!-- memorystoreevictionpolicy:当达到maxelementsinmemory限制时,
 ehcache将会根据指定的策略去清理内存。可选策略有:lru(最近最少使用,默认策略)、
 fifo(先进先出)、lfu(最少访问次数)。-->

</ehcache>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。