当前位置: 移动技术网 > IT编程>开发语言>Java > spring-boot整合ehcache实现缓存机制的方法

spring-boot整合ehcache实现缓存机制的方法

2019年07月19日  | 移动技术网IT编程  | 我要评论

ehcache 是一个纯java的进程内缓存框架,具有快速、精干等特点,是hibernate中默认的cacheprovider。

  ehcache提供了多种缓存策略,主要分为内存和磁盘两级,所以无需担心容量问题。

  spring-boot是一个快速的集成框架,其设计目的是用来简化新spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。

  由于spring-boot无需任何样板化的配置文件,所以spring-boot集成一些其他框架时会有略微的不同。

  1.spring-boot是一个通过maven管理的jar包的框架,集成ehcache需要的依赖如下

 <dependency>
 <groupid>org.springframework</groupid>
  <artifactid>spring-context-support</artifactid>
</dependency>
<dependency>
   <groupid>net.sf.ehcache</groupid>
  <artifactid>ehcache</artifactid>
   <version>2.8.3</version>
</dependency> 

    具体pom.xml文件如下

<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
 xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelversion>4.0.0</modelversion>
 <groupid>com.lclc.boot</groupid>
 <artifactid>boot-cache</artifactid>
 <version>0.0.1-snapshot</version>
 <!-- inherit defaults from spring boot -->
 <parent>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-parent</artifactid>
  <version>1.1.3.release</version>
 </parent>
 <dependencies>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-web</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-data-jpa</artifactid>
  </dependency>
  <dependency>
   <groupid>org.springframework.boot</groupid>
   <artifactid>spring-boot-starter-thymeleaf</artifactid>
  </dependency>
  <dependency>
   <groupid>mysql</groupid>
   <artifactid>mysql-connector-java</artifactid>
  </dependency>
  <dependency>
   <groupid>com.google.guava</groupid>
   <artifactid>guava</artifactid>
   <version>17.0</version>
  </dependency>
  <dependency>
   <groupid>org.springframework</groupid>
   <artifactid>spring-context-support</artifactid>
  </dependency>
  <dependency>
   <groupid>net.sf.ehcache</groupid>
   <artifactid>ehcache</artifactid>
   <version>2.8.3</version>
  </dependency>
 </dependencies>
 <dependencymanagement>
  <dependencies>
  </dependencies>
 </dependencymanagement>
 <build>
  <plugins>
   <plugin>
    <groupid>org.springframework.boot</groupid>
    <artifactid>spring-boot-maven-plugin</artifactid>
   </plugin>
  </plugins>
 </build>
 <repositories>
  <repository>
   <id>spring-snapshots</id>
   <url>http://repo.spring.io/snapshot</url>
   <snapshots>
    <enabled>true</enabled>
   </snapshots>
  </repository>
  <repository>
   <id>spring-milestones</id>
   <url>http://repo.spring.io/milestone</url>
  </repository>
 </repositories>
 <pluginrepositories>
  <pluginrepository>
   <id>spring-snapshots</id>
   <url>http://repo.spring.io/snapshot</url>
  </pluginrepository>
  <pluginrepository>
   <id>spring-milestones</id>
   <url>http://repo.spring.io/milestone</url>
  </pluginrepository>
 </pluginrepositories>
</project>

  2.使用ehcache,我们需要一个ehcache.xml来定义一些cache的属性。

<?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">
   <diskstore path="java.io.tmpdir/tmp_ehcache" />
   <defaultcache eternal="false" maxelementsinmemory="1000" overflowtodisk="false" diskpersistent="false"
 timetoidleseconds="0" timetoliveseconds="600" memorystoreevictionpolicy="lru" />
   <cache name="demo" eternal="false" maxelementsinmemory="100" overflowtodisk="false" diskpersistent="false"
 timetoidleseconds="0" timetoliveseconds="300" memorystoreevictionpolicy="lru" />
</ehcache>

  解释下这个xml文件中的标签。

  (1).diskstore: 为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下:    

    user.home – 用户主目录
     user.dir – 用户当前工作目录
     java.io.tmpdir – 默认临时文件路径

  (2).defaultcache:默认缓存策略,当ehcache找不到定义的缓存时,则使用这个缓存策略。只能定义一个。

(3).cache:自定缓存策略,为自定义的缓存策略。参数解释如下:

    cache元素的属性:

name:缓存名称
maxelementsinmemory:内存中最大缓存对象数
maxelementsondisk:硬盘中最大缓存对象数,若是0表示无穷大
eternal:true表示对象永不过期,此时会忽略timetoidleseconds和timetoliveseconds属性,默认为false
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(最少访问次数)。

  3.将ehcache的管理器暴露给spring的上下文容器,

@configuration
// 标注启动了缓存
@enablecaching
public class cacheconfiguration {
 /*
  * ehcache 主要的管理器
  */
 @bean(name = "appehcachecachemanager")
 public ehcachecachemanager ehcachecachemanager(ehcachemanagerfactorybean bean){
  return new ehcachecachemanager (bean.getobject ());
 }

 /*
  * 据shared与否的设置,spring分别通过cachemanager.create()或new cachemanager()方式来创建一个ehcache基地.
  */
 @bean
 public ehcachemanagerfactorybean ehcachemanagerfactorybean(){
  ehcachemanagerfactorybean cachemanagerfactorybean = new ehcachemanagerfactorybean ();
  cachemanagerfactorybean.setconfiglocation (new classpathresource ("conf/ehcache-app.xml"));
  cachemanagerfactorybean.setshared (true);
  return cachemanagerfactorybean;
 }
}

    @configuration:为spring-boot注解,主要标注此为配置类,优先扫描。

    @bean:向spring容器中加入bean。

  至此所有的配置都做好了,通过spring-boot进行集成框架就是这么简单。

  4.使用ehcache

    使用ehcache主要通过spring的缓存机制,上面我们将spring的缓存机制使用了ehcache进行实现,所以使用方面就完全使用spring缓存机制就行了。
    具体牵扯到几个注解:

    @cacheable:负责将方法的返回值加入到缓存中,参数3
    @cacheevict:负责清除缓存,参数4

     参数解释:

    value:缓存位置名称,不能为空,如果使用ehcache,就是ehcache.xml中声明的cache的name
    key:缓存的key,默认为空,既表示使用方法的参数类型及参数值作为key,支持spel
    condition:触发条件,只有满足条件的情况才会加入缓存,默认为空,既表示全部都加入缓存,支持spel

    allentries:cacheevict参数,true表示清除value中的全部缓存,默认为false

  不多说,直接上代码:

@service
public class cachedemoserviceimpl implements cachedemoservice {
 /**
  * 缓存的key
  */
 public static final string thing_all_key = "\"thing_all\"";
 /**
  * value属性表示使用哪个缓存策略,缓存策略在ehcache.xml
  */
 public static final string demo_cache_name = "demo";
 @cacheevict(value = demo_cache_name,key = thing_all_key)
 @override
 public void create(thing thing){
  long id = getnextid ();
  thing.setid (id);
  data.put (id, thing);
 } 
  @cacheable(value = demo_cache_name,key = "#thing.getid()+'thing'")
 @override
 public thing findbyid(long id){
  system.err.println ("没有走缓存!" + id);
  return data.get (id);
 }
  @cacheable(value = demo_cache_name,key = thing_all_key)
 @override
 public list<thing> findall(){
  return lists.newarraylist (data.values ());
 }
  @override
 @cacheput(value = demo_cache_name,key = "#thing.getid()+'thing'")
 @cacheevict(value = demo_cache_name,key = thing_all_key)
 public thing update(thing thing){
  system.out.println (thing);
  data.put (thing.getid (), thing);
  return thing;
 }
 @cacheevict(value = demo_cache_name)
 @override
 public void delete(long id){
  data.remove (id);
 }
}

    5.只需要通过注解在service层方法上打注解便可以使用缓存,在find**上存入缓存,在delete**,update**上清除缓存。

总结

以上所述是小编给大家介绍的spring-boot整合ehcache实现缓存机制的方法,希望对大家有所帮助

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网