springboot 基于google 缓存,实现防重复提交

在Spring Boot应用中,可以使用Google Guava缓存来实现防重复提交功能。Guava提供了强大的缓存机制,可以方便地实现对请求的去重处理。。

1. 添加依赖

首先,在你的pom.xml文件中添加Guava的依赖:

复制代码
<dependency>
    <groupId>com.google.guava</groupId>
    <artifactId>guava</artifactId>
    <version>31.0.1-jre</version>
</dependency>
复制代码

2. 创建缓存配置类

创建一个配置类来初始化Guava缓存:

复制代码
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.concurrent.TimeUnit;

@Configuration
public class CacheConfig {

    @Bean
    public Cache<String, String> requestCache() {
        return CacheBuilder.newBuilder()
                .expireAfterWrite(5, TimeUnit.MINUTES) // 设置缓存过期时间
                .build();
    }
}
复制代码

3. 创建防重复提交拦截器

接下来,创建一个拦截器来检查请求是否重复:

复制代码
import com.google.common.cache.Cache;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.HandlerInterceptor;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@Component
public class DuplicateSubmissionInterceptor implements HandlerInterceptor {

    @Autowired
    private Cache<String, String> requestCache;

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        String key = generateKey(request);
        if (key != null && requestCache.getIfPresent(key) != null) {
            response.setStatus(HttpServletResponse.SC_CONFLICT); // 409 Conflict
            return false;
        } else {
            requestCache.put(key, "");
            return true;
        }
    }

    private String generateKey(HttpServletRequest request) {
        // 根据请求生成唯一键,例如可以根据URL和参数生成MD5值
        String url = request.getRequestURI();
        String queryString = request.getQueryString();
        return url + (queryString != null ? "?" + queryString : "");
    }
}
复制代码

4. 注册拦截器

最后,将拦截器注册到Spring MVC中:

复制代码
mport org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebConfig implements WebMvcConfigurer {

    @Autowired
    private DuplicateSubmissionInterceptor duplicateSubmissionInterceptor;

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(duplicateSubmissionInterceptor).addPathPatterns("/**"); // 对所有请求进行拦截
    }
}
复制代码

总结

通过以上步骤,已经成功实现了一个基于Guava缓存的防重复提交功能。利用Guava缓存的高效性和简洁性,能够有效地防止短时间内的重复请求。你可以根据实际需求调整缓存的过期时间和生成唯一键的逻辑。

推荐阅读

nginx代理udp协议

springboot 自定义注解实现redis 秒级 缓存

springboot rocketmq 一秒拉取一次消息,批量消费消息

java hashmap 面试题

springboot与tio-websocket自定义集群模式

相关推荐
皮皮林5513 小时前
拒绝写重复代码,试试这套开源的 SpringBoot 组件,效率翻倍~
java·spring boot
IT_陈寒6 小时前
Python开发者必知的5大性能陷阱:90%的人都踩过的坑!
前端·人工智能·后端
流浪克拉玛依7 小时前
Go Web 服务限流器实战:从原理到压测验证 --使用 Gin 框架 + Uber Ratelimit / 官方限流器,并通过 Vegeta 进行性能剖析
后端
孟沐7 小时前
保姆级教程:手写三层架构 vs MyBatis-Plus
后端
星浩AI7 小时前
让模型自己写 Skills——从素材到自动生成工作流
人工智能·后端·agent
华仔啊9 小时前
为啥不用 MP 的 saveOrUpdateBatch?MySQL 一条 SQL 批量增改才是最优解
java·后端
武子康10 小时前
大数据-242 离线数仓 - DataX 实战:MySQL 全量/增量导入 HDFS + Hive 分区(离线数仓 ODS
大数据·后端·apache hive
砍材农夫11 小时前
TCP和UDP区别
后端
千寻girling11 小时前
一份不可多得的 《 Django 》 零基础入门教程
后端·python·面试
千寻girling11 小时前
Python 是用来做 AI 人工智能 的 , 不适合开发 Web 网站 | 《Web框架》
人工智能·后端·算法