Java缓存ehcache的使用步骤

作者:彩虹咖啡 时间:2022-06-25 04:30:55 

一、pom.xml


<dependency>
   <groupId>net.sf.ehcache</groupId>
   <artifactId>ehcache</artifactId>
   <version>2.10.4</version>
</dependency>

二、编写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">

<cacheManagerPeerProviderFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic, multicastGroupAddress=198.1.1.1,
        multicastGroupPort=10001,
        timeToLive=1" />

<cacheManagerPeerListenerFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="port=10001,socketTimeoutMillis=60000" />

<!-- 磁盘缓存位置 -->
<diskStore path="java.io.tmpdir/anywhere" />

<cache name="oneCache" maxElementsInMemory="1500" eternal="false"
timeToIdleSeconds="900" timeToLiveSeconds="900" overflowToDisk="false"
memoryStoreEvictionPolicy="LRU">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory" properties="replicateRemovals=false"/>
<bootstrapCacheLoaderFactory
class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory" />
</cache>

</ehcache>

三、参数简介

maxElementsInMemory缓存中允许创建的最大对象数
eternal缓存中对象是否为永久的,如果是,超时设置将被忽略,对象从不过期。
timeToIdleSeconds缓存数据空闲的最大时间,也就是说如果有一个缓存有多久没有被访问就会被销毁,
           如果该值是 0 就意味着元素可以停顿无穷长的时间。
timeToLiveSeconds缓存数据存活的时间,缓存对象最大的的存活时间,超过这个时间就会被销毁,
           这只能在元素不是永久驻留时有效,如果该值是0就意味着元素可以停顿无穷长的时间。
overflowToDisk内存不足时,是否启用磁盘缓存。
memoryStoreEvictionPolicy缓存满了之后的淘汰算法。
peerDiscovery方式:atutomatic 为自动 ;manual 手动
mulicastGroupAddress广播组地址:192.1.1.1
mulicastGroupPort广播组端口:10001;
timeToLive是指搜索范围:0是同一台服务器,1是同一个子网,32是指同一站点,64是指同一块地域,128是同一块大陆;
hostName主机名或者ip,用来接受或者发送信息的接口

四、Ehcache的缓存数据淘汰策略

FIFO:先进先出

LFU:最少被使用,缓存的元素有一个hit属性,hit值最小的将会被清出缓存。

LRU:最近最少使用,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存

五、编写spring-ehcache.xml


<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

<description>ehcache</description>
 <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
   <property name="cacheManager" ref="ehcache"/>
 </bean>
 <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
   <property name="configLocation" value="classpath:/ehcache.xml"/>
 </bean>
</beans>

六、与Spring整合,导入到spring配置文件


<import resource="classpath:/spring-ehcache.xml"/>

七、Java Source code


使用类导入:
    @Resource
    private org.springframework.cache.ehcacheEhCacheCacheManager cacheManager;

从获取cache
    Cache cache = cacheManager.getCache(“oneCache”);
存入cache
    cache.put(“key”, “value”);
从cache中获取
    ValueWrapper val = cache.get(“key”);
    String tempVal = (String)val.get();

来源:https://blog.csdn.net/wy818/article/details/116457843

标签:ehcache,缓存,用法
0
投稿

猜你喜欢

  • 在spring中手写全局异常拦 截器

    2023-11-09 01:25:42
  • Spark SQL 编程初级实践详解

    2022-06-13 18:37:56
  • eclipse导入appcompat项目报错解决办法

    2021-11-10 14:25:57
  • Android SeekBar实现平滑滚动

    2022-01-21 10:51:24
  • 详解spring boot实现多数据源代码实战

    2022-05-01 20:18:36
  • C#实现为视频添加水印

    2022-02-16 05:30:07
  • 举例解析Java的设计模式编程中里氏替换原则的意义

    2021-06-30 18:37:17
  • Android基础控件RadioGroup使用方法详解

    2022-08-05 17:43:31
  • java实现图片转base64字符串 java实现base64字符串转图片

    2023-07-19 10:42:44
  • springboot 使用mybatis查询的示例代码

    2022-03-30 03:19:09
  • Java 重写时应当遵守的 11 条规则

    2023-02-10 18:58:06
  • Spring常用注解汇总

    2022-12-19 16:26:03
  • Android自定义VIew实现卫星菜单效果浅析

    2022-09-23 22:44:43
  • Java自定义注解用法实例小结

    2023-03-26 09:13:51
  • BeanDefinitionRegistryPostProcessor如何动态注册Bean到Spring

    2023-11-24 12:56:16
  • C#并行编程Task类用法介绍

    2021-06-26 20:58:17
  • Java实现超大Excel文件解析(XSSF,SXSSF,easyExcel)

    2023-11-27 11:02:17
  • java贪吃蛇游戏编写代码

    2023-06-16 02:41:10
  • SpringBoot框架中Mybatis-plus的简单使用操作汇总

    2022-12-17 19:10:53
  • 一文搞懂Java MD5算法的原理及实现

    2023-01-04 21:10:24
  • asp之家 软件编程 m.aspxhome.com