1、引入依赖
1 2 3 4 5 6 7 8 9 10 11 12 | <!-- aop --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <!-- fastjson --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.46</version> </dependency> |
2、编写切面类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | @Aspect @Component public class WebControllerAspact { // 匹配com.zkn.learnspringboot.web.controller包及其子包下的所有类的所有方法,(&&、||、!)用来连接多个条件,例如@Pointcut("execution(* pom.controller..*.*(..)) || execution(* pom.controller..*.*(..))")<br><br> //@Pointcut(value="execution(* pom.controller..*.*(..))" &&!@annotation(com.qding.hk.rest.common.argument.NotAopLog))表示不拦截注解为NotAopLog的方法或者类 @Pointcut(value="execution(* pom.controller..*.*(..))") public void executeService() { } /** * 前置通知,方法调用前被调用 * * @param joinPoint */ @Before( "executeService()" ) public void doBeforeAdvice(JoinPoint joinPoint) { System. out .println( "我是前置通知!!!" ); // 获取目标方法的参数信息 Object[] obj = joinPoint.getArgs(); // AOP代理类的信息 joinPoint.getThis(); // 代理的目标对象 joinPoint.getTarget(); // 用的最多 通知的签名 Signature signature = joinPoint.getSignature(); // 代理的是哪一个方法 System. out .println(signature.getName()); // AOP代理类的名字 System. out .println(signature.getDeclaringTypeName()); // AOP代理类的类(class)信息 signature.getDeclaringType(); // 获取RequestAttributes RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); // 从获取RequestAttributes中获取HttpServletRequest的信息 HttpServletRequest request = (HttpServletRequest) requestAttributes .resolveReference(RequestAttributes.REFERENCE_REQUEST); // 如果要获取Session信息的话,可以这样写: // HttpSession session = (HttpSession) // requestAttributes.resolveReference(RequestAttributes.REFERENCE_SESSION); Enumeration<String> enumeration = request.getParameterNames(); Map<String, String> parameterMap = new HashMap<String, String>(); while (enumeration.hasMoreElements()) { String parameter = enumeration.nextElement(); parameterMap.put(parameter, request.getParameter(parameter)); } String str = JSON.toJSONString(parameterMap); if (obj.length > 0) { System. out .println( "请求的参数信息为:" + str); } } /** * 后置返回通知 这里需要注意的是: 如果参数中的第一个参数为JoinPoint,则第二个参数为返回值的信息 * 如果参数中的第一个参数不为JoinPoint,则第一个参数为returning中对应的参数 returning * 限定了只有目标方法返回值与通知方法相应参数类型时才能执行后置返回通知,否则不执行,对于returning对应的通知方法参数为Object类型将匹配任何目标返回值 * * @param joinPoint * @param keys */ @AfterReturning(value = "execution(* com.example.demo.mvc..*.*(..)) || execution(* com.example.demo.controller..*.*(..))" , returning = "keys" ) public void doAfterReturningAdvice1(JoinPoint joinPoint, Object keys) { System. out .println( "第一个后置返回通知的返回值:" + keys); } @AfterReturning(value = "execution(* com.example.demo.mvc..*.*(..)) || execution(* com.example.demo.controller..*.*(..))" , returning = "keys" , argNames = "keys" ) public void doAfterReturningAdvice2(String keys) { System. out .println( "第二个后置返回通知的返回值:" + keys); } /** * 后置异常通知 定义一个名字,该名字用于匹配通知实现方法的一个参数名,当目标方法抛出异常返回后,将把目标方法抛出的异常传给通知方法; throwing * 限定了只有目标方法抛出的异常与通知方法相应参数异常类型时才能执行后置异常通知,否则不执行, * 对于throwing对应的通知方法参数为Throwable类型将匹配任何异常。 * * @param joinPoint * @param exception */ @AfterThrowing(value = "executeService()" , throwing = "exception" ) public void doAfterThrowingAdvice(JoinPoint joinPoint, Throwable exception) { // 目标方法名: System. out .println(joinPoint.getSignature().getName()); if (exception instanceof NullPointerException) { System. out .println( "发生了空指针异常!!!!!" ); } } /** * 后置最终通知(目标方法只要执行完了就会执行后置通知方法) * * @param joinPoint */ @After( "executeService()" ) public void doAfterAdvice(JoinPoint joinPoint) { System. out .println( "后置通知执行了!!!!" ); } /** * 环绕通知: 环绕通知非常强大,可以决定目标方法是否执行,什么时候执行,执行时是否需要替换方法参数,执行完毕是否需要替换返回值。 * 环绕通知第一个参数必须是org.aspectj.lang.ProceedingJoinPoint类型 */ @Around( "execution(* com.example.demo.mvc..*.*(..)) || execution(* com.example.demo.controller..*.*(..))" ) public Object doAroundAdvice(ProceedingJoinPoint proceedingJoinPoint) { System. out .println( "环绕通知的目标方法名:" + proceedingJoinPoint.getSignature().getName()); try { // obj之前可以写目标方法执行前的逻辑 Object obj = proceedingJoinPoint.proceed(); // 调用执行目标方法 return obj; } catch (Throwable throwable) { throwable.printStackTrace(); } return null ; } } |
备注:环绕通知会覆盖异常通知
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步