spring aop常用的有以下:

    • 通知类型:
      前置通知(Before advice):在某连接点之前执行的通知,但这个通知不能阻止连接点之前的执行流程(除非它抛出一个异常)。
      后置通知(After returning advice):在某连接点正常完成后执行的通知:例如,一个方法没有抛出任何异常,正常返回。
      异常通知(After throwing advice):在方法抛出异常退出时执行的通知。
      最终通知(After (finally) advice):当某连接点退出的时候执行的通知(不论是正常返回还是异常退出)。
      * 环绕通知(Around Advice):包围一个连接点的通知,如方法调用。这是最强大的一种通知类型。环绕通知可以在方法调用前后完成自定义的行为。它也会选择是否继续执行连接点或直接返回它自己的返回值或抛出异常来结束执行。
    • 核心配置只要在AOP的实现方法上加上@Aspect与在spring 配置文件中加上 aop:aspectj-autoproxy/,spring 就可以配置aop方法,然后再根据方法的增强标签不同的效果,这里需要注意是它们的参数不同。
    • pom.xml
    1. <project xmlns="http://maven.apache.org/POM/4.0.0"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4. <parent>
    5. <artifactId>mrwood_study</artifactId>
    6. <groupId>xyz.mrwood.study</groupId>
    7. <version>1.0-SNAPSHOT</version>
    8. </parent>
    9. <modelVersion>4.0.0</modelVersion>
    10. <artifactId>study-spring-aop</artifactId>
    11. <packaging>jar</packaging>
    12. <name>study-spring-aop</name>
    13. <url>http://maven.apache.org</url>
    14. <properties>
    15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    16. <spring.version>4.2.5.RELEASE</spring.version>
    17. </properties>
    18. <dependencies>
    19. <!-- spring开始 -->
    20. <dependency>
    21. <groupId>org.springframework</groupId>
    22. <artifactId>spring-aop</artifactId>
    23. <version>${spring.version}</version>
    24. </dependency>
    25. <dependency>
    26. <groupId>org.springframework</groupId>
    27. <artifactId>spring-tx</artifactId>
    28. <version>${spring.version}</version>
    29. </dependency>
    30. <dependency>
    31. <groupId>org.springframework</groupId>
    32. <artifactId>spring-beans</artifactId>
    33. <version>${spring.version}</version>
    34. </dependency>
    35. <dependency>
    36. <groupId>org.springframework</groupId>
    37. <artifactId>spring-context</artifactId>
    38. <version>${spring.version}</version>
    39. </dependency>
    40. <dependency>
    41. <groupId>org.springframework</groupId>
    42. <artifactId>spring-test</artifactId>
    43. <version>${spring.version}</version>
    44. </dependency>
    45. <dependency>
    46. <groupId>org.springframework</groupId>
    47. <artifactId>spring-context-support</artifactId>
    48. <version>${spring.version}</version>
    49. </dependency>
    50. <!--spring 结束-->
    51. <!-- AOP begin -->
    52. <dependency>
    53. <groupId>org.aspectj</groupId>
    54. <artifactId>aspectjrt</artifactId>
    55. <version>1.7.4</version>
    56. </dependency>
    57. <dependency>
    58. <groupId>org.aspectj</groupId>
    59. <artifactId>aspectjweaver</artifactId>
    60. <version>1.7.4</version>
    61. </dependency>
    62. <dependency>
    63. <groupId>cglib</groupId>
    64. <artifactId>cglib</artifactId>
    65. <version>3.1</version>
    66. </dependency>
    67. <dependency>
    68. <groupId>junit</groupId>
    69. <artifactId>junit</artifactId>
    70. <version>4.12</version>
    71. <scope>test</scope>
    72. </dependency>
    73. <!-- AOP end -->
    74. <!-- 日志开始 -->
    75. <dependency>
    76. <groupId>ch.qos.logback</groupId>
    77. <artifactId>logback-classic</artifactId>
    78. <version>1.1.7</version>
    79. <exclusions>
    80. <exclusion>
    81. <artifactId>slf4j-api</artifactId>
    82. <groupId>org.slf4j</groupId>
    83. </exclusion>
    84. </exclusions>
    85. </dependency>
    86. <dependency>
    87. <groupId>org.slf4j</groupId>
    88. <artifactId>slf4j-api</artifactId>
    89. <version>1.7.21</version>
    90. </dependency>
    91. <!-- 日志结束 -->
    92. </dependencies>
    93. </project>
    • spring-context.xml
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:context="http://www.springframework.org/schema/context"
    5. xmlns:aop="http://www.springframework.org/schema/aop"
    6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    7. <!--自动注入-->
    8. <context:component-scan base-package="xyz.mrwood.study"/>
    9. <!--开启aop-->
    10. <aop:aspectj-autoproxy/>
    11. </beans>
    • AopHandler.java
    1. /**
    2. * Copyright (c) 2016, 791650277@qq.com(Mr.kiwi) All Rights Reserved.
    3. */
    4. package xyz.mrwood.study.aop;
    5. import org.aspectj.lang.JoinPoint;
    6. import org.aspectj.lang.ProceedingJoinPoint;
    7. import org.aspectj.lang.annotation.*;
    8. import org.springframework.stereotype.Component;
    9. /**
    10. * 项目:study
    11. * 包名:xyz.mrwood.study.aop
    12. * 功能:aop实现
    13. * 时间:2016-05-28 10:33
    14. * 作者:Mr.Kiwi
    15. * 通知类型:
    16. * 前置通知(Before advice):在某连接点之前执行的通知,但这个通知不能阻止连接点之前的执行流程(除非它抛出一个异常)。
    17. * 后置通知(After returning advice):在某连接点正常完成后执行的通知:例如,一个方法没有抛出任何异常,正常返回。
    18. * 异常通知(After throwing advice):在方法抛出异常退出时执行的通知。
    19. * 最终通知(After (finally) advice):当某连接点退出的时候执行的通知(不论是正常返回还是异常退出)。
    20. * 环绕通知(Around Advice):包围一个连接点的通知,如方法调用。这是最强大的一种通知类型。环绕通知可以在方法调用前后完成自定义的行为。它也会选择是否继续执行连接点或直接返回它自己的返回值或抛出异常来结束执行。
    21. */
    22. @Aspect
    23. @Component
    24. public class AopHandler {
    25. /**
    26. * 拦截工程下所有的切点
    27. */
    28. @Pointcut("execution(* xyz.mrwood.study..*.*(..))")
    29. public void getAllPoint() {
    30. }
    31. /**
    32. * 拦截所有service层下的切点
    33. */
    34. @Pointcut("execution(* xyz.mrwood.study.service..*.*(..))")
    35. public void getServicePoint() {
    36. }
    37. /**
    38. * 前置增强
    39. * @param joinPoint
    40. */
    41. @Before("getServicePoint()")
    42. public void beforeMethod(JoinPoint joinPoint){
    43. System.out.println("[前置增强开始]:" + "方法开始了");
    44. }
    45. @AfterThrowing(value = "getServicePoint()", throwing = "ex")
    46. public void exceptionMethod(JoinPoint joinPoint, Exception ex){
    47. System.out.println("[异常增强]:" + "如果你看到这行,就说明你的程序报错了!" + "异常信息:" + ex.getMessage());
    48. }
    49. /**
    50. * 后置增强,只有在方法正常结束才会调用
    51. * @param returnVal
    52. */
    53. @AfterReturning(value = "getServicePoint()",returning = "returnVal")
    54. public void afterReturningMethod(Object returnVal){
    55. System.out.println("[后置增强]:" + "当你看到这个说明,你的方法没有正常结束了!" + "它的返回值为:" + returnVal);
    56. }
    57. /**
    58. * 最终增强,类似于finally的功能
    59. */
    60. @After("getServicePoint()")
    61. public void afterMethod(){
    62. System.out.println("[最终增强]:" + "无论发论发生什么事,我都会运行!");
    63. }
    64. /**
    65. * 环绕增强
    66. * @param proceedingJoinPoint
    67. */
    68. @Around("getServicePoint()")
    69. public Object aroundMethod(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
    70. System.out.println("[环绕增强开始]:" + "方法开始了!");
    71. Object returnVal = proceedingJoinPoint.proceed(proceedingJoinPoint.getArgs());
    72. System.out.println("[环绕增强结束]:" + "方法已经结束了!");
    73. return returnVal;
    74. }
    75. }
    • TargetService.java
    1. /**
    2. * Copyright (c) 2016, 791650277@qq.com(Mr.kiwi) All Rights Reserved.
    3. */
    4. package xyz.mrwood.study.service;
    5. import org.springframework.stereotype.Component;
    6. /**
    7. * 项目:study
    8. * 包名:xyz.mrwood.study.service
    9. * 功能:被拦截的目标类
    10. * 时间:2016-05-28 10:32
    11. * 作者:Mr.Kiwi
    12. */
    13. @Component
    14. public class TargetService {
    15. public String hello(String name){
    16. return "hello " + name;
    17. }
    18. public String test(){
    19. return "test";
    20. }
    21. }
    • 运行结果
    1. [环绕增强开始]:方法开始了!
    2. [前置增强开始]:方法开始了
    3. [环绕增强结束]:方法已经结束了!
    4. [最终增强]:无论发论发生什么事,我都会运行!
    5. [后置增强]:当你看到这个说明,你的方法没有正常结束了!它的返回值为:test