spring框架使用EhCache本地缓存数据工具类

2024-04-17 06:32

本文主要是介绍spring框架使用EhCache本地缓存数据工具类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

第一步:spring.xml配置CacheManager。

<?xml version="1.0" encoding="UTF-8"?>

<bean id="springCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"><property name="cacheManager" ref="ehcacheManager"/>
</bean><!--ehcache-->
<bean id="ehcacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"><property name="configLocation" value="classpath:properties/ehcache.xml"/>
</bean>
第二步:配置ehcache.xml配置缓存设置。 <?xml version="1.0" encoding="UTF-8"?>

<diskStore path="C:\\ehcache\\cache"/>
<!-- <diskStore path=" /application/skscache"/> --><cache name="authorizationCache"maxEntriesLocalHeap="2000"eternal="false"timeToIdleSeconds="3600"timeToLiveSeconds="0"overflowToDisk="false"statistics="true">
</cache><defaultCache  maxElementsInMemory="1000"  eternal="false"  timeToIdleSeconds="120"  timeToLiveSeconds="120"  overflowToDisk="true"  maxElementsOnDisk="10000"  diskSpoolBufferSizeMB="30"  diskPersistent="false"  diskExpiryThreadIntervalSeconds="120"  memoryStoreEvictionPolicy="LRU"  statistics="false"  />  <cache name="invoiceFpKeyCache"  maxElementsInMemory="1000"  maxElementsOnDisk="10000"  eternal="false"  overflowToDisk="true"  diskSpoolBufferSizeMB="20"  timeToIdleSeconds="20"  timeToLiveSeconds="20"memoryStoreEvictionPolicy="LFU"  transactionalMode="off"  /><cache name="invoiceFpqqlshCache"  maxElementsInMemory="1000"  maxElementsOnDisk="10000"  eternal="false"  overflowToDisk="true"  diskSpoolBufferSizeMB="20"  timeToIdleSeconds="6"  timeToLiveSeconds="6"  memoryStoreEvictionPolicy="LFU"  transactionalMode="off"  />
参数说明:

:当内存缓存中对象数量超过maxElementsInMemory时,将缓存对象写到磁盘缓存中(需对象实现序列化接口)。

:用来配置磁盘缓存使用的物理路径,Ehcache磁盘缓存使用的文件后缀名是*.data和*.index。

name:缓存名称,cache的唯一标识(ehcache会把这个cache放到HashMap里)。

maxElementsOnDisk:磁盘缓存中最多可以存放的元素数量,0表示无穷大。

maxElementsInMemory:内存缓存中最多可以存放的元素数量,若放入Cache中的元素超过这个数值,则有以下两种情况。

1)若overflowToDisk=true,则会将Cache中多出的元素放入磁盘文件中。

2)若overflowToDisk=false,则根据memoryStoreEvictionPolicy策略替换Cache中原有的元素。

Eternal:缓存中对象是否永久有效,即是否永驻内存,true时将忽略timeToIdleSeconds和timeToLiveSeconds。

timeToIdleSeconds:缓存数据在失效前的允许闲置时间(单位:秒),仅当eternal=false时使用,默认值是0表示可闲置时间无穷大,此为可选属性即访问这个cache中元素的最大间隔时间,若超过这个时间没有访问此Cache中的某个元素,那么此元素将被从Cache中清除。

timeToLiveSeconds:缓存数据在失效前的允许存活时间(单位:秒),仅当eternal=false时使用,默认值是0表示可存活时间无穷大,即Cache中的某元素从创建到清楚的生存时间,也就是说从创建开始计时,当超过这个时间时,此元素将从Cache中清除。

overflowToDisk:内存不足时,是否启用磁盘缓存(即内存中对象数量达到maxElementsInMemory时,Ehcache会将对象写到磁盘中),会根据标签中path值查找对应的属性值,写入磁盘的文件会放在path文件夹下,文件的名称是cache的名称,后缀名是data。

diskPersistent:是否持久化磁盘缓存,当这个属性的值为true时,系统在初始化时会在磁盘中查找文件名为cache名称,后缀名为index的文件,这个文件中存放了已经持久化在磁盘中的cache的index,找到后会把cache加载到内存,要想把cache真正持久化到磁盘,写程序时注意执行net.sf.ehcache.Cache.put(Element element)后要调用flush()方法。

diskExpiryThreadIntervalSeconds:磁盘缓存的清理线程运行间隔,默认是120秒。

diskSpoolBufferSizeMB:设置DiskStore(磁盘缓存)的缓存区大小,默认是30MB

memoryStoreEvictionPolicy:内存存储与释放策略,即达到maxElementsInMemory限制时,Ehcache会根据指定策略清理内存,共有三种策略,分别为LRU(最近最少使用)、LFU(最常用的)、FIFO(先进先出)。

第三步:工具类代码。

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.Cache;
import org.springframework.cache.CacheManager;
import org.springframework.stereotype.Component;

import com.whty.framework.base.util.CheckEmptyUtil;

/**

  • ehCache工具类

*/
@Component
public class EhcacheUtil {

@Autowired
private CacheManager cacheManager;public static final String INVOICE_PFDM_FPHM_CACHE = "invoiceFpKeyCache";public static final String FPQQLSH_CACHE = "invoiceFpqqlshCache";/*** List添加数据* * @param key*/
@SuppressWarnings("unchecked")
public void add(String cacheName, String value) {Cache cache = cacheManager.getCache(cacheName);List<String> list = cache.get(cacheName, ArrayList.class);if (CheckEmptyUtil.isEmpty(list)) {list = new ArrayList<>();}list.add(value);cache.put(cacheName, list);
}/*** List获取数据* * @param key* @return String*/
@SuppressWarnings("unchecked")
public List<String> get(String cacheName) {Cache cache = cacheManager.getCache(cacheName);List<String> list = cache.get(cacheName, ArrayList.class);if (CheckEmptyUtil.isEmpty(list)) {return null;}return list;
}/*** List判断是否包含数据* * @param key* @return String*/
@SuppressWarnings("unchecked")
public boolean contains(String cacheName, String value) {Cache cache = cacheManager.getCache(cacheName);List<String> list = cache.get(cacheName, ArrayList.class);if (CheckEmptyUtil.isEmpty(list)) {return false;}return list.contains(value);
}/*** List删除数据* * @param cacheName* @param key*            void*/
@SuppressWarnings("unchecked")
public void remove(String cacheName, String value) {Cache cache = cacheManager.getCache(cacheName);List<String> list = cache.get(cacheName, ArrayList.class);if (CheckEmptyUtil.isEmpty(list)) {return;}list.remove(value);cache.put(cacheName, list);
}/*** Map添加数据* * @param key*/
@SuppressWarnings("unchecked")
public void put(String cacheName, String key, String value) {Cache cache = cacheManager.getCache(cacheName);Map<String, String> map = cache.get(cacheName, HashMap.class);if (CheckEmptyUtil.isEmpty(map)) {map = new HashMap<>();}map.put(key, value);cache.put(cacheName, map);
}/*** Map获取数据* * @param key* @return String*/
@SuppressWarnings("unchecked")
public String get(String cacheName, String key) {Cache cache = cacheManager.getCache(cacheName);Map<String, String> map = cache.get(cacheName, HashMap.class);if (CheckEmptyUtil.isEmpty(map)) {return null;}return map.get(key);
}/*** Map获取数据* * @param key* @return String*/
@SuppressWarnings("unchecked")
public List<String> getValues(String cacheName) {Cache cache = cacheManager.getCache(cacheName);Map<String, String> map = cache.get(cacheName, HashMap.class);if (CheckEmptyUtil.isEmpty(map)) {return null;}List<String> values = new ArrayList<>(map.size());for (Entry<String, String> entry : map.entrySet()) {values.add(entry.getValue());}return values;
}/*** Map判断是否包含数据* * @param key* @return String*/
@SuppressWarnings("unchecked")
public boolean containsKey(String cacheName, String key) {Cache cache = cacheManager.getCache(cacheName);Map<String, String> map = cache.get(cacheName, HashMap.class);if (CheckEmptyUtil.isEmpty(map)) {return false;}return map.containsKey(key);
}/*** Map删除数据* * @param cacheName* @param key*            void*/
@SuppressWarnings("unchecked")
public void removeKey(String cacheName, String key) {Cache cache = cacheManager.getCache(cacheName);Map<String, String> map = cache.get(cacheName, HashMap.class);if (CheckEmptyUtil.isEmpty(map)) {return;}map.remove(key);cache.put(cacheName, map);
}

}
注意:此处的cacheName 要和ehcahe.xml中的名称保持一致。

参考文档:

https://blog.csdn.net/clj198606061111/article/details/41121437

作者:itget
来源:CSDN
原文:https://blog.csdn.net/hu582205/article/details/80585529
版权声明:本文为博主原创文章,转载请附上博文链接!

这篇关于spring框架使用EhCache本地缓存数据工具类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/911035

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数