spring cache (默认方式)

news2024/11/25 22:41:58

目录

  • 前置
  • pom
  • 配置
  • 示列代码
  • 效果图
  • 部分源码
    • 关键类
    • 流程
    • 代码描述 (此类无用, 只是备注源码的逻辑)


前置

什么是springcache:

通过注解就能实现缓存功能, 简化在业务中去操作缓存
Spring Cache只是提供了一层抽象, 底层可以切换不同的cache实现. 通过CacheManager接口来统一不同的缓存技术

会演示springcache的使用方式
项目地址: https://gitee.com/xmaxm/test-code/blob/master/chaim-cache/chaim-spring-cache/chaim-spring-cache-jdk/README.md

注意点

官网地址:
https://docs.spring.io/spring-framework/docs/current/reference/html/integration.html#cache
默认方式是使用ConcurrentMap进行数据的保存, 下方有介绍

相关缓存文章

spring cache (默认方式)
spring cache (Redis方式)
spring cache (ehcache方式)


pom

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-cache</artifactId>
</dependency>

配置

启动类上添加注解

@EnableCaching

示列代码

/**
 * @Cacheable: 参数释义
 * value相当于缓存空间的名称, 而key相当于是一个缓存值的名字
 * cacheManager和cacheResolver参数是互斥的, 指定这两个参数的操作会导致异常, 因为自定义cacheManager会被cacheResolver实现忽略
 *
 * key: 缓存的 key, 可以按 SpEL 表达式编写,为空时默认为方法的全参, 除非配置了 keyGenerator
 *      value(cacheNames): 缓存的名称, 可以多个
 * keyGenerator: key 的生成器. key 和 keyGenerator 二选一使用
 * cacheManager: 指定缓存管理器. 从哪个缓存管理器里面获取缓存
 * cacheResolver: 管理缓存管理器, CacheResolver 保持一个 cacheManager 的引用,并通过它来检索缓存
 * condition: 该参数采用SpEL计算为 true 或者 false. true: 缓存该方法 false: 不被缓存
 * unless: 与 condition 不同的是,unless表达式是在方法被调用后计算. true: 缓存该方法 false: 不被缓存
 * sync: 简单点讲, 避免瞬时流量涌入直接打入数据库. true: 可以有效的避免这种情况(缓存击穿)
 */
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
@ResponseBody
@Cacheable(value = "selectById", key = "#id", sync = true)
public Object selectById(@PathVariable("id") Long id) {
    return sysUserService.selectById(id);
}

/**
 * @Cacheable: 使用多参数指定 key
 */
@RequestMapping(value = "/page", method = RequestMethod.GET)
@ResponseBody
@Cacheable(value = "selectPage", key = "#page + '-' + #size")
public Object selectPage(@RequestParam(value = "page", required = true) Integer page,
                         @RequestParam(value = "size", required = true) Integer size) {
    return sysUserService.selectPage(page, size);
}

/**
 * @CacheEvict: 补充参数释义, 其余参数可参考 @Cacheable
 *
 * allEntries: 是否删除缓存中的所有条目. 默认情况下, 只移除相关键下的值. 注意: 参数设置为 true 会忽略key
 * beforeInvocation: 是否应该在调用方法之前进行驱逐.
 *      true: 将导致不管方法结果如何(是否抛出异常)都将发生驱逐. 调用方法之前发生
 *      false(默认值): 意味着在成功调用方法后, 缓存清除操作将发生(即仅当调用没有抛出异常时)。
 *
 * 使用释义:
 *      新增数据, 查询时可自行加入缓存
 *      分页的情况, 会导致已缓存的分页数据结构异常, 清空分页数据, 从新加入缓存
 */
@RequestMapping(value = "/insert", method = RequestMethod.POST)
@ResponseBody
@CacheEvict(value = "selectPage", allEntries = true, beforeInvocation = true)
public Object insert(@Validated @RequestBody SysUserDTO.InsertSysUserDTO insertSysUserDTO) {
    return sysUserService.insert(insertSysUserDTO);
}

/**
 * @CachePut: 可参考 @Cacheable
 *      将返回结果更新至对应的缓存, 需要指定 key
 * @Caching:
 *      将多个注解进行组合使用, 支持: Cacheable, CachePut, CacheEvict
 *
 * 使用释义:
 * 该方法根据ID更新, 将返回结果更新至对应的缓存, 使用 @CachePut
 * 数据更新了, 但是分页的接口也使用了缓存, 但是分页的参数存在条数页数, 故将分页的缓存进行清空处理, 使用 @CacheEvict
 */
@RequestMapping(value = "/update", method = RequestMethod.PUT)
@ResponseBody
@Caching(
        put = @CachePut(value = "selectById", key = "#updateSysUserDTO.id"),
        evict = @CacheEvict(value = "selectPage", allEntries = true, beforeInvocation = true)
)
public Object update(@Validated @RequestBody SysUserDTO.UpdateSysUserDTO updateSysUserDTO) {
    return sysUserService.update(updateSysUserDTO);
}

/**
 * @CacheEvict:
 * 删除接口, 建议配置allEntries = true, 指定 key 可能无法指定清除复杂缓存, 如分页的缓存
 *
 * 使用释义:
 *      清空缓存, 这个地方可以使用组合注解: @Caching 根据ID清除指定的缓存(根据ID查询接口添加的缓存),
 * 在清除所有的分页缓存. (@Caching(evict={@CacheEvict(自行补充), @CacheEvict(自行补充)})
 *      删除对应的数据, 肯定要处理对应的缓存. 入参ID可通过指定 key 清除指定的缓存
 * 但是分页接口无法通过入参进行指定的缓存清除, 故干脆配置 allEntries = true 清除所有缓存
 */
@RequestMapping(value = "/{id}", method = RequestMethod.DELETE)
@ResponseBody
@CacheEvict(value = {"selectById", "selectPage"}, allEntries = true, beforeInvocation = true)
public Object deleteById(@PathVariable("id") Long id) {
    return sysUserService.deleteById(id);
}

效果图

部分源码

关键类

关键类: org.springframework.cache.Cache
org.springframework.cache.interceptor.CacheInterceptor#invoke
org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration
实现类: org.springframework.cache.concurrent.ConcurrentMapCache

流程

在这里插入图片描述
在这里插入图片描述

代码描述 (此类无用, 只是备注源码的逻辑)

MyCacheAspectSupport.java 此类无用, 只是备注源码的逻辑:

package com.chaim.spring.cache.config;/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Supplier;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.aop.framework.AopProxyUtils;
import org.springframework.aop.support.AopUtils;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.NoUniqueBeanDefinitionException;
import org.springframework.beans.factory.SmartInitializingSingleton;
import org.springframework.beans.factory.annotation.BeanFactoryAnnotationUtils;
import org.springframework.cache.Cache;
import org.springframework.cache.CacheManager;
import org.springframework.cache.interceptor.*;
import org.springframework.context.expression.AnnotatedElementKey;
import org.springframework.core.BridgeMethodResolver;
import org.springframework.expression.EvaluationContext;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
import org.springframework.util.CollectionUtils;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;
import org.springframework.util.function.SingletonSupplier;
import org.springframework.util.function.SupplierUtils;

public abstract class MyCacheAspectSupport{
    private Object execute(final CacheOperationInvoker invoker, Method method, CacheOperationContexts contexts) {
        // 同步调用的特殊处理
        if (contexts.isSynchronized()) {
            CacheOperationContext context = contexts.get(CacheableOperation.class).iterator().next();
            if (isConditionPassing(context, CacheOperationExpressionEvaluator.NO_RESULT)) {
                Object key = generateKey(context, CacheOperationExpressionEvaluator.NO_RESULT);
                Cache cache = context.getCaches().iterator().next();
                try {
                    return wrapCacheValue(method, cache.get(key, () -> unwrapReturnValue(invokeOperation(invoker))));
                }
                catch (Cache.ValueRetrievalException ex) {
                    // The invoker wraps any Throwable in a ThrowableWrapper instance so we
                    // can just make sure that one bubbles up the stack.
                    throw (CacheOperationInvoker.ThrowableWrapper) ex.getCause();
                }
            }
            else {
                // 不需要缓存,只调用底层方法
                return invokeOperation(invoker);
            }
        }


        // 判断@CacheEvict,是否有需要执行beforeInvocation,提前清除
        processCacheEvicts(contexts.get(CacheEvictOperation.class), true,
                CacheOperationExpressionEvaluator.NO_RESULT);

        // 检查是否有匹配条件的缓存项
        // 根据 CacheableOperation 去查缓存, 在 MultiValueMap 中查找缓存(第3步)
        // 然后在根据生成的 key 到全局常量 Collection<? extends Cache> caches 中查找缓存(第5步)
        Cache.ValueWrapper cacheHit = findCachedItem(contexts.get(CacheableOperation.class));

        // 如果缓存未命中, 则新增到cachePutRequests,后续执行原始方法后会写入缓存
        List<CachePutRequest> cachePutRequests = new LinkedList<>();
        if (cacheHit == null) {
            collectPutRequests(contexts.get(CacheableOperation.class),
                    CacheOperationExpressionEvaluator.NO_RESULT, cachePutRequests);
        }

        Object cacheValue;
        Object returnValue;
        // 缓存存在使用缓存, 不存在调用目标方法
        if (cacheHit != null && !hasCachePut(contexts)) {
            // 缓存命中的情况, 使用缓存值作为结果
            cacheValue = cacheHit.get();
            returnValue = wrapCacheValue(method, cacheValue);
        }
        else {
            // 如果没有缓存命中,就调用目标方法
            returnValue = invokeOperation(invoker);
            cacheValue = unwrapReturnValue(returnValue);
        }

        // 如果有@CachePut注解, 则新增到cachePutRequests, 因为@CachePut修饰的方法需要每次都更新缓存值
        collectPutRequests(contexts.get(CachePutOperation.class), cacheValue, cachePutRequests);

        // 更新缓存值, 将结果添加到全局常量 Collection<? extends Cache> caches 中(第5步)
        for (CachePutRequest cachePutRequest : cachePutRequests) {
            cachePutRequest.apply(cacheValue);
        }

        // 执行被@CacheEvict修饰的,需要缓存剔除的值
        processCacheEvicts(contexts.get(CacheEvictOperation.class), false, cacheValue);

        return returnValue;
    }

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/27759.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

大数据培训课程MapTask工作机制

MapTask工作机制 MapTask工作机制如图4-12所示。 图4-12 MapTask工作机制 &#xff08;1&#xff09;Read阶段&#xff1a;MapTask通过用户编写的RecordReader&#xff0c;从输入InputSplit中解析出一个个key/value。 &#xff08;2&#xff09;Map阶段&#xff1a;该节点主要…

java面试强基(9)

字符串拼接用“” 还是 StringBuilder? ​ Java 语言本身并不支持运算符重载&#xff0c;“”和“”是专门为 String 类重载过的运算符&#xff0c;也是 Java 中仅有的两个重载过的运算符。 ​ 字符串对象通过“”的字符串拼接方式&#xff0c;实际上是通过 StringBuilder 调…

【MFC】一个最简单的MFC程序(9)

了解完MFC程序的流程后&#xff0c;会有 “果然不需要了解这些东西&#xff0c;直接用就可以了” 的感觉。这应该是MFC的初衷吧——按照框架来&#xff0c;集中精力做应用。但是没有了解呢&#xff1f; 最简单的MFC程序 步骤&#xff1a; 1、创建WIN32应用程序&#xff0c;空…

GoWeb 的 MVC 入门实战案例,基于 Iris 框架实现(附案例全代码)

1、什么是 MVC M 即 Model 模型是指模型表示业务规则。在MVC的三个部件中&#xff0c;模型拥有最多的处理任务。被模型返回的数据是中立的&#xff0c;模型与数据格式无关&#xff0c;这样一个模型能为多个视图提供数据&#xff0c;由于应用于模型的代码只需写一次就可以被多个…

1531_AURIX_TriCore内核架构_任务以及函数

全部学习汇总&#xff1a; GreyZhang/g_tricore_architecture: some learning note about tricore architecture. (github.com) 继续前面的内核架构学习&#xff0c;这次看一下任务以及函数的描述。 1. 在嵌入式系统中&#xff0c;内核以及函数的设计其实是有一定的模型或者说是…

day33 文件上传中间件解析漏洞编辑器安全

前言 先判断中间件&#xff0c;是否有解析漏洞&#xff0c;字典扫描拿到上传点&#xff0c;或者会员中心&#xff0c;有可能存在文件上传的地方&#xff0c;而后测试绕过/验证&#xff0c;根据实际情况判断是白名单、黑名单还是内容其他的绕过&#xff0c;绕过/验证和中间件的…

数字信号处理FFT快速傅立叶变换MATLAB实现——实例

今天做作业的时候发现要对一个信号进行FFT变换&#xff0c;在网上找了半天也没找到个能看懂的&#xff08;因为我太菜了&#xff09;&#xff0c;后来自己研究了一下&#xff0c;感觉一知半解的 起因是这道作业题 例题-满足奈奎斯特 我画了两个图&#xff0c;一个是原信号经过…

毕业论文管理系统的设计与实现

摘要 随着互联网技术的迅猛发展&#xff0c;网络给人们带来了很多便利&#xff0c;比如人们借助于网络进行相互交流、相互通信、共享信息、文件的上传下载等。在线毕业论文管理系统就是以上运用之一&#xff0c;它已经广泛的应用于目前的各大高校,但现有的这些系统都有一定的局…

如何在VScode和Jetbrain上使用备受争议的GitHub Copilot

如何在VScode和Jetbrain上使用备受争议的GitHub Copilot VSCDOE https://docs.github.com/en/copilot/quickstart 配置好之后&#xff0c;就是这种效果&#xff0c;真实太NB了&#xff01;&#xff01;&#xff01; 一个tab就把所有的代码都填充上去了&#xff01; Jetbrain…

MES系统以全流程优化为核心,实现全闭环的生产

MES系统是一个在车间中广泛使用的软件&#xff0c;它具有承上启下的功能.该系统采用企业ERP系统&#xff0c;获取计划、资源等数据&#xff0c;并与PLM、SRM、WMS等进行整合&#xff0c;获取BOM、流程等数据。该系统可对下级的控制系统进行操作&#xff0c;并将作业命令和恢复计…

Prometheus Operator 极简配置方式在k8s一条龙安装Prometheus 监控

在k8s上 Prometheus&#xff08;普罗米修斯&#xff09; 监控&#xff0c;需要部署各种组件&#xff0c;比如Prometheus、Alertmanager、Grafana。同时各个组件的配置文件也是需要到处各个配置&#xff0c;Prometheus配置监控服务时&#xff0c;你还要知道各个监控服务的地址&a…

JDBC编程

JDBC编程 [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-5QlM7GTR-1669108965995)(https://img1.baidu.com/it/u865461056,274570923&fm253&fmtauto&app138&fPNG?w794&h500)] 什么是JDBC Java数据库连接 Java Database Connect…

第2-4-2章 规则引擎Drools入门案例-业务规则管理系统-组件化-中台

文章目录3. Drools入门案例3.1 业务场景说明3.2 开发实现3.3 小结3.3.1 规则引擎构成3.3.2 相关概念说明3.3.3 规则引擎执行过程3.3.4 KIE介绍3. Drools入门案例 全套代码及资料全部完整提供&#xff0c;点此处下载 本小节通过一个Drools入门案例来让大家初步了解Drools的使用…

Java 集合学习笔记:HashMap

Java 集合学习笔记&#xff1a;HashMapUML简介阅读源码属性字段1. 静态属性2.成员属性静态内部类class Node<K,V>静态工具方法hash(Object key)comparableClassFor(Object x)compareComparables(Class<?> kc, Object k, Object x)tableSizeFor(int cap)构造方法Ha…

电梯物联网网关软硬件一体化解决方案

电梯物联网监测平台&#xff0c;基于边缘计算智能监测设备全天候、全自动监测电梯的运行。通过采集电梯实时运行传感数据&#xff0c;建立运行状态关键数据标准&#xff0c;基于AI机器学习算法&#xff0c;采用大数据分析计算&#xff0c;对电梯故障、困人等事件实时报警&#…

solr自定义定制自带core添加分词器,解决镜像没有权限问题

因为solr要安装自定义的分词器 就打算在原有基础上提前放好,直接启动就有core 第一步获取默认配置 方法一 docker安装solr 这个帖子中 1、安装镜像 docker pull solr:8.11.1 2、新建目录 mkdir -p /home/apps/solr 3、复制配置文件 运行一个临时solr docker run --name solr…

14.HTML和CSS 02

文章目录一、HTML标签&#xff1a;表单标签1、概念2、form标签3、表单项标签4、案例二、CSS&#xff1a;页面美化和布局控制1、概念2、好处3、CSS的使用&#xff1a;CSS与html结合方式4、css语法5、选择器6、属性案例一、HTML标签&#xff1a;表单标签 1、概念 表单标签是用于…

integral函数Opencv源码理解-leetcode动态规划的使用场景

前言 Opencv有一个integral()函数&#xff0c;也就是积分图算法。有三种积分图类型&#xff0c;求和&#xff08;sum&#xff09;&#xff0c;求平方和(sqsum)&#xff0c;求旋转45和(titled)。根据名字可知道&#xff0c;前两个是统计输出每个坐标的左上方像素和、左上方像素平…

pexpect 自动交互输入

pexpect 为 python 内置库&#xff0c;在 linux 上执行的&#xff0c;win 执行会报错 主要用于执行命令后自动输入&#xff0c;例如要执行 sql 去修改全局变量&#xff1a; mysql -uroot -p -h127.0.0.1 -e"set gloabl max_prepared_stmt_count1000000;" 这时候会…

实时数据平台设计

1 相关概念背景 1.1 从现代数仓架构角度看实时数据平台 现代数仓由传统数仓发展而来&#xff0c;对比传统数仓&#xff0c;现代数仓既有与其相同之处&#xff0c;也有诸多发展点。首先我们看一下传统数仓&#xff08;图1&#xff09;和现代数仓&#xff08;图2&#xff09;的…