当前位置:   article > 正文

java代码实现接口幂等性问题_java 等幂校验

java 等幂校验

问题描述:接口幂等性问题

解决办法:接口幂等问题传统方式是基于redis解决,由于项目中没有用到redis所以用ConcurrentHashMap+锁的方式模拟redis实现接口幂等问题的处理

上代码:

第一版:直接在业务层添加代码,代码入侵性比较高

  1. //每次请求的唯一key
  2. String key = record.getSuperviseId().toString() + record.getSendCourtId().toString() + record.getReceiveCourtId().toString();
  3. try {
  4. //对保全局map进行操作时进行加锁操作 注:这里的锁采用com.google.common.collect.Interners包下的字符串锁
  5. // this会锁整个类对象范围太大
  6. synchronized (lock.intern("superviseChatRecord" + key)) {
  7. //在map里面获取key 如果能获取到则证明在间隔时间内已经执行过一次
  8. Long time = KEY_MAP.get(key);
  9. if (time != null && System.currentTimeMillis() - time < 1000) {
  10. throw new BusinessException("不能重复发送消息!");
  11. }
  12. //如果获取不到则证明是第一次或者超过间隔时间保存的key 则运行继续保存或执行后续的操作
  13. //将唯一键保存入map
  14. KEY_MAP.put(key, System.currentTimeMillis());
  15. //执行保存逻辑
  16. return this.save(record);
  17. }
  18. } finally {
  19. //最后如果key对应的时间值大于间隔时间则移除key
  20. //移除原因 1.防止map过大内存溢出 2.下次请求大于间隔时间则认为是两次请求不是连点造成的幂等性问题
  21. if (KEY_MAP.get(key)-System.currentTimeMillis()>1000){
  22. KEY_MAP.remove(key);
  23. }
  24. }

第二版:用自定义注解+AOP的方式解决

  1. package com.iexecloud.shzxzh.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * @Description : 幂等 自定义注解,基于post请求,请求入参为json
  8. * @Author : ;lirui
  9. * @Date : 2022/9/22 14:06
  10. * @Version : 1.0
  11. */
  12. @Target(ElementType.METHOD)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. public @interface Idempotent {
  15. /**
  16. * 需要排除的字段,逗号分割
  17. */
  18. String exclude() default "";
  19. /**
  20. * 指定字段幂等,逗号分割
  21. */
  22. String include() default "";
  23. }
  1. package com.iexecloud.shzxzh.aspect;
  2. import cn.hutool.core.util.StrUtil;
  3. import cn.hutool.json.JSONUtil;
  4. import com.iexecloud.shzxzh.annotation.Idempotent;
  5. import com.iexecloud.shzxzh.exception.BusinessException;
  6. import com.iexecloud.shzxzh.util.ReqDedupHelper;
  7. import lombok.RequiredArgsConstructor;
  8. import lombok.extern.slf4j.Slf4j;
  9. import org.aspectj.lang.ProceedingJoinPoint;
  10. import org.aspectj.lang.annotation.Around;
  11. import org.aspectj.lang.annotation.Aspect;
  12. import org.aspectj.lang.reflect.MethodSignature;
  13. import org.springframework.stereotype.Component;
  14. import org.springframework.web.context.request.RequestAttributes;
  15. import org.springframework.web.context.request.RequestContextHolder;
  16. import org.springframework.web.context.request.ServletRequestAttributes;
  17. import javax.servlet.http.HttpServletRequest;
  18. import java.lang.reflect.Method;
  19. import java.util.List;
  20. import java.util.concurrent.ConcurrentHashMap;
  21. /**
  22. * @Description : 基于注解的幂等功能
  23. * @Author : ;lirui
  24. * @Date : 2022/9/22 14:06
  25. * @Version : 1.0
  26. */
  27. @Aspect
  28. @Component
  29. @Slf4j
  30. @RequiredArgsConstructor
  31. public class IdempotentAspect {
  32. private static final ConcurrentHashMap<String, Long> concurrentHashMap = new ConcurrentHashMap<>();
  33. @Around("@annotation(com.iexecloud.shzxzh.annotation.Idempotent)")
  34. public Object log(ProceedingJoinPoint joinPoint) throws Throwable {
  35. RequestAttributes ra = RequestContextHolder.getRequestAttributes();
  36. ServletRequestAttributes sra = (ServletRequestAttributes) ra;
  37. if (sra == null) {
  38. return joinPoint.proceed();
  39. }
  40. Object[] args = joinPoint.getArgs();
  41. HttpServletRequest request = sra.getRequest();
  42. String methodType = request.getMethod();
  43. if (!"POST".equalsIgnoreCase(methodType) || args == null || args.length == 0) {
  44. return joinPoint.proceed();
  45. }
  46. //只对POST请求做幂等校验
  47. Method method = ((MethodSignature) joinPoint.getSignature()).getMethod();
  48. String methodName = method.getName();
  49. Object response;
  50. Idempotent idempotent = method.getAnnotation(Idempotent.class);
  51. String include = idempotent.include();
  52. String exclude = idempotent.exclude();
  53. List<String> includeList = StrUtil.split(include, ",");
  54. List<String> excludeList = StrUtil.split(exclude, ",");
  55. String dedupMD5 = methodName + new ReqDedupHelper().dedupParamMD5(JSONUtil.toJsonStr(args[0]), includeList, excludeList);
  56. synchronized (this) {
  57. Long time = concurrentHashMap.get(dedupMD5);
  58. if (time != null && System.currentTimeMillis() - time < 2000) {
  59. throw new BusinessException("请勿重复提交");
  60. }
  61. concurrentHashMap.put(dedupMD5, System.currentTimeMillis());
  62. }
  63. try {
  64. response = joinPoint.proceed();
  65. } finally {
  66. concurrentHashMap.remove(dedupMD5);
  67. }
  68. return response;
  69. }
  70. }

最后在controller层添加相关注解:

  1. /**
  2. * 发送消息
  3. * @param
  4. * @return
  5. */
  6. //这里是指定唯一key包含的字段
  7. @Idempotent(include = "superviseId,sendCourtId,receiveCourtId,content")
  8. @PostMapping("sendMessage")
  9. public R sendMessage(@RequestBody SuperviseChatRecord record) {
  10. Boolean flag = superviseChatRecordService.sendMessage(record);
  11. if (flag){
  12. return R.ok("发送消息成功");
  13. }
  14. return R.failed("发送消息失败");
  15. }

以上就是为解决消息幂等性所想到的解决方案,如有问题请及时提出,当然实现接口幂等性的解决方案还有很多种,包括用数据库实现,或者redis实现等等。

后续在自己的demo里添加了redis然后用redis实现的代码:

  1. String key = record.getSuperviseId().toString() + record.getSendCourtId().toString() + record.getReceiveCourtId().toString();
  2. synchronized (this){
  3. //获取redis里的key
  4. String time = redis.opsForValue().get(key);
  5. //如果key已经存在或者key对应的时间小于间隔时间则抛异常
  6. if (StringUtils.isNotBlank(time)&&System.currentTimeMillis()-Long.valueOf(time)<1000){
  7. throw new BusinessException("切勿重复提交");
  8. }
  9. //如果redis里面没有值则添加key并设置过期时间
  10. redis.opsForValue().set(key, String.valueOf(System.currentTimeMillis()),1, TimeUnit.SECONDS);
  11. }
  12. //执行业务逻辑

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/663959
推荐阅读
相关标签
  

闽ICP备14008679号