文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringBoot + Redis怎么解决重复提交问题

2023-06-22 01:41

关注

这篇文章主要为大家展示了“SpringBoot + Redis怎么解决重复提交问题”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“SpringBoot + Redis怎么解决重复提交问题”这篇文章吧。

在开发中,一个对外暴露的接口可能会面临瞬间的大量重复请求,如果想过滤掉重复请求造成对业务的伤害,那就需要实现幂等

幂等:

任意多次执行所产生的影响均与一次执行的影响相同。最终的含义就是 对数据库的影响只能是一次性的,不能重复处理。

解决方案:

SpringBoot + Redis怎么解决重复提交问题

一、搭建Redis服务

package com.ckw.idempotence.service;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.data.redis.core.ValueOperations;import org.springframework.data.redis.serializer.RedisSerializer;import org.springframework.data.redis.serializer.StringRedisSerializer;import org.springframework.stereotype.Component;import java.io.Serializable;import java.util.concurrent.TimeUnit;@Componentpublic class RedisService {    private RedisTemplate redisTemplate;    @Autowired(required = false)    public void setRedisTemplate(RedisTemplate redisTemplate) {        RedisSerializer stringSerializer = new StringRedisSerializer();        redisTemplate.setKeySerializer(stringSerializer);        redisTemplate.setValueSerializer(stringSerializer);        redisTemplate.setHashKeySerializer(stringSerializer);        redisTemplate.setHashValueSerializer(stringSerializer);        this.redisTemplate = redisTemplate;    }        public boolean set(final String key, Object value) {        boolean result = false;        try {            ValueOperations operations = redisTemplate.opsForValue();            operations.set(key, value);            result = true;        } catch (Exception e) {            e.printStackTrace();        }        return result;    }        public boolean setEx(final String key, Object value, Long expireTime) {        boolean result = false;        try {            ValueOperations<Serializable, Object> operations = redisTemplate.opsForValue();            operations.set(key, value);            redisTemplate.expire(key, expireTime, TimeUnit.SECONDS);            result = true;        } catch (Exception e) {            e.printStackTrace();        }        return result;    }        public boolean exists(final String key) {        return redisTemplate.hasKey(key);    }        public Object get(final String key) {        Object o = null;        ValueOperations valueOperations = redisTemplate.opsForValue();        return valueOperations.get(key);    }        public Boolean remove(final String key) {        if(exists(key)){            return redisTemplate.delete(key);        }        return false;    }}

二、自定义注解

作用:拦截器拦截请求时,判断调用的地址对应的Controller方法是否有自定义注解,有的话说明该接口方法进行 幂等

package com.ckw.idempotence.annotion;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;@Target({ElementType.METHOD})@Retention(RetentionPolicy.RUNTIME)public @interface AutoIdempotent {}

三、Token创建和校验

package com.ckw.idempotence.service;import com.ckw.idempotence.exectionhandler.BaseException;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import org.springframework.util.StringUtils;import javax.servlet.http.HttpServletRequest;import java.util.UUID;@Servicepublic class TokenService {    @Autowired RedisService redisService;//创建token    public String createToken() {    //使用UUID代表token        UUID uuid = UUID.randomUUID();        String token = uuid.toString();        //存入redis        boolean b = redisService.setEx(token, token, 10000L);        return token;    }//检验请求头或者请求参数中是否有token    public boolean checkToken(HttpServletRequest request) {        String token = request.getHeader("token");        //如果header中是空的        if(StringUtils.isEmpty(token)){            //从request中拿            token = request.getParameter("token");            if(StringUtils.isEmpty(token)){               throw new BaseException(20001, "缺少参数token");            }        }        //如果从header中拿到的token不正确        if(!redisService.exists(token)){            throw new BaseException(20001, "不能重复提交-------token不正确、空");        }        //token正确 移除token        if(!redisService.remove(token)){            throw new BaseException(20001, "token移除失败");        }        return true;    }}

这里用到了自定义异常和自定义响应体如下

自定义异常:

package com.ckw.idempotence.exectionhandler;import lombok.AllArgsConstructor;import lombok.Data;import lombok.NoArgsConstructor;@Data@AllArgsConstructor@NoArgsConstructorpublic class BaseException extends RuntimeException {    private Integer code;    private String msg;}

设置统一异常处理:

package com.ckw.idempotence.exectionhandler;import com.ckw.idempotence.utils.R;import org.springframework.web.bind.annotation.ControllerAdvice;import org.springframework.web.bind.annotation.ExceptionHandler;import org.springframework.web.bind.annotation.ResponseBody;@ControllerAdvicepublic class GlobalExceptionHandler {    @ExceptionHandler(Exception.class)    @ResponseBody    public R error(Exception e){        e.printStackTrace();        return R.error();    }    @ExceptionHandler(BaseException.class)    @ResponseBody    public R error(BaseException e){        e.printStackTrace();        return R.error().message(e.getMsg()).code(e.getCode());    }}

自定义响应体:

package com.ckw.idempotence.utils;import lombok.Data;import java.util.HashMap;import java.util.Map;@Datapublic class R {    private Boolean success;    private Integer code;    private String message;    private Map<String, Object> data = new HashMap<String, Object>();    private R() {    }    //封装返回成功    public static R ok(){        R r = new R();        r.setSuccess(true);        r.setCode(ResultCode.SUCCESS);        r.setMessage("成功");        return r;    }    //封装返回失败    public static R error(){        R r = new R();        r.setSuccess(false);        r.setCode(ResultCode.ERROR);        r.setMessage("失败");        return r;    }    public R success(Boolean success){        this.setSuccess(success);        return this;    }    public R message(String message){        this.setMessage(message);        return this;    }    public R code(Integer code){        this.setCode(code);        return this;    }    public R data(String key, Object value){        this.data.put(key, value);        return this;    }    public R data(Map<String, Object> map){        this.setData(map);        return this;    }}

自定义响应码:

package com.ckw.idempotence.utils;import lombok.Data;import java.util.HashMap;import java.util.Map;@Datapublic class R {    private Boolean success;    private Integer code;    private String message;    private Map<String, Object> data = new HashMap<String, Object>();    private R() {    }    //封装返回成功    public static R ok(){        R r = new R();        r.setSuccess(true);        r.setCode(ResultCode.SUCCESS);        r.setMessage("成功");        return r;    }    //封装返回失败    public static R error(){        R r = new R();        r.setSuccess(false);        r.setCode(ResultCode.ERROR);        r.setMessage("失败");        return r;    }    public R success(Boolean success){        this.setSuccess(success);        return this;    }    public R message(String message){        this.setMessage(message);        return this;    }    public R code(Integer code){        this.setCode(code);        return this;    }    public R data(String key, Object value){        this.data.put(key, value);        return this;    }    public R data(Map<String, Object> map){        this.setData(map);        return this;    }}

四、拦截器配置

拦截器配置类

package com.ckw.idempotence.config;import com.ckw.idempotence.interceptor.AutoIdempotentInterceptor;import 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;@Configurationpublic class WebConfiguration implements WebMvcConfigurer {    @Autowired    private AutoIdempotentInterceptor autoIdempotentInterceptor;    @Override    public void addInterceptors(InterceptorRegistry registry) {        registry.addInterceptor(autoIdempotentInterceptor);    }}

拦截器类

package com.ckw.idempotence.interceptor;import com.ckw.idempotence.annotion.AutoIdempotent;import com.ckw.idempotence.service.TokenService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import org.springframework.web.method.HandlerMethod;import org.springframework.web.servlet.HandlerInterceptor;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.lang.reflect.Method;@Componentpublic class AutoIdempotentInterceptor implements HandlerInterceptor {    @Autowired    private TokenService tokenService;    @Override    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {        if(!(handler instanceof HandlerMethod))            return true;        HandlerMethod handlerMethod = (HandlerMethod) handler;        Method method = handlerMethod.getMethod();        //拿到方法上面的自定义注解        AutoIdempotent annotation = method.getAnnotation(AutoIdempotent.class);                //如果不等于null说明该方法要进行幂等        if(null != annotation){            return tokenService.checkToken(request);        }        return true;    }}

五、正常Sevice类

package com.ckw.idempotence.service;import org.springframework.stereotype.Service;@Servicepublic class TestService {    public String testMethod(){        return "正常业务逻辑";    }}

六、Controller类

package com.ckw.idempotence.controller;import com.ckw.idempotence.annotion.AutoIdempotent;import com.ckw.idempotence.service.TestService;import com.ckw.idempotence.service.TokenService;import com.ckw.idempotence.utils.R;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;@RestController@CrossOrigin@RequestMapping("/Idempotence")public class TestController {    @Autowired    private TokenService tokenService;    @Autowired    private TestService testService;    @GetMapping("/getToken")    public R getToken(){        String token = tokenService.createToken();        return R.ok().data("token",token);    }    //相当于添加数据接口(测试时 连续点击添加数据按钮  看结果是否是添加一条数据还是多条数据)    @AutoIdempotent    @PostMapping("/test/addData")    public R addData(){        String s = testService.testMethod();        return R.ok().data("data",s);    }}

七、测试

SpringBoot + Redis怎么解决重复提交问题

第一次点击:

SpringBoot + Redis怎么解决重复提交问题

第二次点击:

SpringBoot + Redis怎么解决重复提交问题

以上是“SpringBoot + Redis怎么解决重复提交问题”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯