当前位置: 首页 > article >正文

使用 Caffeine 缓存并在业务方法上通过注解实现每3到5秒更新缓存

要使用 Caffeine 缓存并在业务方法上通过注解实现每3到5秒更新缓存,可以借助 Spring 框架的缓存管理功能。Spring Cache 提供了 @Cacheable@CachePut 注解,可以方便地管理缓存。

以下是一个示例,展示了如何在 Spring Boot 项目中使用 Caffeine 缓存,并通过注解实现每3到5秒更新缓存。

1. 添加依赖

首先,在 pom.xml 中添加 Spring Boot 和 Caffeine 的依赖:

<dependencies>
    <!-- Spring Boot Starter Cache -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-cache</artifactId>
    </dependency>

    <!-- Caffeine Cache -->
    <dependency>
        <groupId>com.github.ben-manes.caffeine</groupId>
        <artifactId>caffeine</artifactId>
    </dependency>
</dependencies>

2. 配置缓存管理器

在 Spring Boot 配置类中,配置 Caffeine 缓存管理器,并设置缓存项的过期时间为3到5秒。

import com.github.benmanes.caffeine.cache.Caffeine;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.caffeine.CaffeineCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.concurrent.TimeUnit;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        CaffeineCacheManager cacheManager = new CaffeineCacheManager();
        cacheManager.setCaffeine(Caffeine.newBuilder().expireAfterWrite(3, TimeUnit.SECONDS));
        return cacheManager;
    }
}

3. 使用注解进行缓存管理

在业务方法上使用 @Cacheable 注解来缓存方法的结果,并在需要更新缓存的地方使用 @CachePut 注解。

import org.springframework.cache.annotation.Cacheable;
import org.springframework.cache.annotation.CachePut;
import org.springframework.stereotype.Service;

@Service
public class DataService {

    @Cacheable(value = "dataCache", key = "#key")
    public String fetchData(String key) {
        // 模拟数据加载过程
        System.out.println("Fetching data for key: " + key);
        return "Data for " + key;
    }

    @CachePut(value = "dataCache", key = "#key")
    public String updateData(String key, String newData) {
        // 更新数据
        System.out.println("Updating data for key: " + key);
        return newData;
    }
}

4. 测试缓存

创建一个简单的控制器来测试缓存功能。

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class DataController {

    @Autowired
    private DataService dataService;

    @GetMapping("/data")
    public String getData(@RequestParam String key) {
        return dataService.fetchData(key);
    }

    @GetMapping("/update")
    public String updateData(@RequestParam String key, @RequestParam String newData) {
        return dataService.updateData(key, newData);
    }
}

解释

  1. 配置缓存管理器

    • CacheConfig 类中配置了 Caffeine 缓存管理器,并设置了缓存项在写入后3秒过期。
  2. 使用注解进行缓存管理

    • @Cacheable 注解用于缓存方法的结果。当方法参数相同且缓存中存在结果时,不会执行方法体,直接返回缓存中的结果。
    • @CachePut 注解用于更新缓存中的数据。每次调用该方法时,都会更新缓存中的数据。
  3. 测试缓存

    • DataController 类提供了两个端点,一个用于获取数据,另一个用于更新数据。

通过这种方式,你可以轻松地在业务方法上使用注解来管理缓存,并实现每3到5秒更新缓存的效果。


http://www.kler.cn/a/396945.html

相关文章:

  • 无人机检测车辆——多目标检测
  • c++ 类和对象(中)
  • Spark RDD sortBy算子什么情况会触发shuffle
  • Tiktok对接和内容发布申请流程
  • 系统架构设计师第二版口诀
  • Uniapp踩坑input自动获取焦点ref动态获取实例不可用
  • Python学习笔记(2)正则表达式
  • 《Java核心技术 卷I》用户界面AWT事件继承层次
  • 【网络】什么是交换机?switch
  • IDC机房服务器托管的费用组成
  • 【MyBatis操作数据库】XML配置
  • 自然语言处理(NLP)的开源生态系统:Hugging Face 原理和使用
  • [241115] Debian 12.8 发布 | Mistral AI 推出批量 API,成本降低 50%
  • “嵌入”在大语言模型中是解决把句子转换成向量表示的技术
  • Servlet⽣生命周期超级细(笔记)
  • 区间和 离散化 模板题
  • CentOS 升级 gcc 版本
  • 项目风险管理的3大要素
  • 如何基于Tesseract实现图片的文本识别
  • Redis 持久化机制 RDB 和 AOF 区别
  • 图像重建之深度学习重建
  • 安全见闻5
  • 深入理解UML通信图:概念、构成与使用示例
  • macbook git 设置和远程克隆项目
  • 每日计划-1116
  • Linux下安装rabbitMQ