当前位置:   article > 正文

springboot aop注解_spring boot aop注解

spring boot aop注解

目录

1.需求描述

2.实现思路

3.代码实现

3.1添加aspect依赖

3.2新建避免前端重复提交注解@AvoidRepeatable

3.3编写注解aop切面代码


1.需求描述

        实现通过给指定方法添加注解的方式,对添加注解的方法进行重新提交进行控制。

2.实现思路

        新建一个用于标识避免重复的注解@AvoidRepeatable,同时当前后端调用注解标识的方法时,约定一个单次调用唯一凭证uuid,后端收到调用后,先在redis中检测是否有对该方法的uuid缓存,如果有说明前面已有携带该uuid的调用,直接提示重复提交;若在redis中无该uuid的缓存,先在redis中缓存,再执行业务方法,若业务方法执行失败,清除uuid缓存,若业务方法执行成功,不主动清除uuid缓存,通过设置超时时间来清除uuid,用于避免在执行成功后在超时内避免重复提交。

        代码编写顺序:

        1.引入aspect依赖,用于注解aop切面代码编写。

        2.新建避免前端重复提交注解@AvoidRepeatable。

        3.编写注解aop切面代码。

        4.在需要避免重复提交的方法上添加@AvoidRepeatable注解。

3.代码实现

3.1添加aspect依赖

  1. <!-- aop切面 -->
  2. <dependency>
  3. <groupId>org.aspectj</groupId>
  4. <artifactId>aspectjrt</artifactId>
  5. <version>1.9.5</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.aspectj</groupId>
  9. <artifactId>aspectjweaver</artifactId>
  10. <version>1.9.5</version>
  11. </dependency>

3.2新建避免前端重复提交注解@AvoidRepeatable

  1. package com.ybjdw.product.utils;
  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. * <一句话功能简述> 避免前端重复提交注解
  8. * <功能详细描述> 在需要保存的方法上添加上,同时要求前端传递唯一参数uuid
  9. * author: zhanggj
  10. * 创建时间: 2017年9月7日
  11. */
  12. @Target(ElementType.METHOD)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. public @interface AvoidRepeatable {
  15. }

3.3编写注解aop切面代码

  1. package com.ybjdw.product.utils;
  2. import com.alibaba.fastjson.JSON;
  3. import com.alibaba.fastjson.JSONObject;
  4. import com.ybjdw.base.utils.ConcurrentUtils;
  5. import com.ybjdw.base.utils.HttpUtils;
  6. import org.apache.commons.lang3.StringUtils;
  7. import org.aspectj.lang.ProceedingJoinPoint;
  8. import org.aspectj.lang.annotation.After;
  9. import org.aspectj.lang.annotation.AfterReturning;
  10. import org.aspectj.lang.annotation.AfterThrowing;
  11. import org.aspectj.lang.annotation.Around;
  12. import org.aspectj.lang.annotation.Aspect;
  13. import org.aspectj.lang.annotation.Before;
  14. import org.aspectj.lang.annotation.Pointcut;
  15. import org.aspectj.lang.reflect.MethodSignature;
  16. import org.slf4j.Logger;
  17. import org.slf4j.LoggerFactory;
  18. import org.springframework.beans.factory.annotation.Autowired;
  19. import org.springframework.context.annotation.Lazy;
  20. import org.springframework.data.redis.core.RedisTemplate;
  21. import org.springframework.stereotype.Component;
  22. import java.lang.reflect.Method;
  23. /**
  24. * author: zhanggw
  25. * 创建时间: 2021/9/7
  26. */
  27. @Aspect
  28. @Component
  29. @Lazy(false)
  30. public class AvoidRepeatableAspect {
  31. private static final Logger logger = LoggerFactory.getLogger(AvoidRepeatableAspect.class);
  32. @Autowired
  33. private RedisTemplate<String, String> redisTemplate;
  34. /**
  35. * 定义切入点:对要拦截的方法进行定义与限制,如包、类
  36. *
  37. * 1、execution(public * *(..)) 任意的公共方法
  38. * 2、execution(* set*(..)) 以set开头的所有的方法
  39. * 3、execution(* com.ybjdw.annotation.LoggerApply.*(..))com.ybjdw.annotation.LoggerApply这个类里的所有的方法
  40. * 4、execution(* com.ybjdw.annotation.*.*(..))com.ybjdw.annotation包下的所有的类的所有的方法
  41. * 5、execution(* com.ybjdw.annotation..*.*(..))com.ybjdw.annotation包及子包下所有的类的所有的方法
  42. * 6、execution(* com.ybjdw.annotation..*.*(String,?,Long)) com.ybjdw.annotation包及子包下所有的类的有三个参数,第一个参数为String类型,第二个参数为任意类型,第三个参数为Long类型的方法
  43. * 7、execution(@annotation(com.ybjdw.product.utils.AvoidRepeatable)) 跟随注解
  44. */
  45. @Pointcut("@annotation(com.ybjdw.product.utils.AvoidRepeatable)")
  46. private void cutMethod() {
  47. }
  48. /**
  49. * 前置通知:在目标方法执行前调用
  50. */
  51. @Before("cutMethod()")
  52. public void begin() {
  53. }
  54. /**
  55. * 后置通知:在目标方法执行后调用,若目标方法出现异常,则不执行
  56. */
  57. @AfterReturning("cutMethod()")
  58. public void afterReturning() {
  59. }
  60. /**
  61. * 后置/最终通知:无论目标方法在执行过程中出现一场都会在它之后调用
  62. */
  63. @After("cutMethod()")
  64. public void after() {
  65. }
  66. /**
  67. * 异常通知:目标方法抛出异常时执行
  68. */
  69. @AfterThrowing("cutMethod()")
  70. public void afterThrowing() {
  71. }
  72. /**
  73. * 环绕通知:灵活自由的在目标方法中切入代码
  74. */
  75. @Around("cutMethod()")
  76. public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
  77. Object retObj = null;
  78. Object[] params = joinPoint.getArgs(); // 方法参数
  79. String methodName = joinPoint.getSignature().getName(); // 方法名
  80. try{
  81. if(params != null && params.length > 0){
  82. JSONObject dataJson = JSON.parseObject(params[0].toString());
  83. if(dataJson != null){
  84. String uuid = dataJson.getString("uuid"); // 单次唯一凭证
  85. if(StringUtils.isBlank(uuid)){
  86. return joinPoint.proceed();
  87. }
  88. String redisKey = methodName + uuid;
  89. boolean uniqueRun = ConcurrentUtils.isUniqueRun(redisTemplate, redisKey, 1000*60*3); // 重复检测
  90. if(uniqueRun){ // 唯一运行
  91. retObj = joinPoint.proceed();
  92. if(retObj != null){
  93. JSONObject methodReturnJson = JSON.parseObject(retObj.toString());
  94. if(!methodReturnJson.getBooleanValue("flag")){ // 方法执行失败清理缓存锁,以便于前端再次提交;成交则保留缓存锁,防止重复提交
  95. ConcurrentUtils.freeRedisLock(redisTemplate, redisKey);
  96. }
  97. }
  98. }else{
  99. logger.error("product_avoidrepeatable_around_error : methodName:{},uuid:{}重复提交!", methodName, uuid);
  100. return HttpUtils.showFail("product_avoidrepeatable_around_error","methodName:"+methodName+",uuid:"+uuid+"重复提交!");
  101. }
  102. }
  103. }
  104. }catch (Exception e){
  105. logger.debug("methodName:{},params:{}",methodName,params);
  106. logger.error("防止重复提交异常!", e);
  107. }
  108. return retObj;
  109. }
  110. /**
  111. * 获取方法中声明的注解
  112. */
  113. public AvoidRepeatable getDeclaredAnnotation(ProceedingJoinPoint joinPoint) throws NoSuchMethodException {
  114. // 获取方法名
  115. String methodName = joinPoint.getSignature().getName();
  116. // 反射获取目标类
  117. Class<?> targetClass = joinPoint.getTarget().getClass();
  118. // 拿到方法对应的参数类型
  119. Class<?>[] parameterTypes = ((MethodSignature) joinPoint.getSignature()).getParameterTypes();
  120. // 根据类、方法、参数类型(重载)获取到方法的具体信息
  121. Method objMethod = targetClass.getMethod(methodName, parameterTypes);
  122. // 拿到方法定义的注解信息
  123. AvoidRepeatable annotation = objMethod.getDeclaredAnnotation(AvoidRepeatable.class);
  124. // 返回
  125. return annotation;
  126. }
  127. }

3.4在目标方法上添加注解

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/995850
推荐阅读
相关标签
  

闽ICP备14008679号