一、开发步骤

1、导入AOP相关坐标

  1. <dependency>
  2. <groupId>org.springframework</groupId>
  3. <artifactId>spring-context</artifactId>
  4. <version>5.0.5.RELEASE</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.aspectj</groupId>
  8. <artifactId>aspectjweaver</artifactId>
  9. <version>1.8.4</version>
  10. </dependency>

2、创建目标接口和目标类(内部有切点)

3、创建切面类(内部有增强方法)

4、将目标类和切面类的对象创建权交给spring

5、在applicationC ontext.xml中配置织入关系

  1. <!--目标对象-->
  2. <bean id="target" class="com.demo.aop.Target"></bean>
  3. <!--切面对象-->
  4. <bean id="myAspect" class="com.demo.aop.MyAspect"></bean>
  5. <!-配置织入:告诉spring框架哪些方法(切点)需要进行哪些增强(前置、后置...)-->
  6. <aop:config>
  7. <!--声明切面-->
  8. <aop:aspect ref="myAspect">
  9. <!--切面:切点通知-->_
  10. <aop:before method="before" pointcut="execution(public void com.demo.aop.Target.save())" />
  11. </aop:aspect>
  12. </aop:config>

6、测试代码

二、切点表达式

表达式语法:
execution([修饰符]返回值类型包名类名方法名(参数))

  • 访问修饰符可以省略
  • 返回值类型、包名、类名、方法名可以使用星号*代表任意
  • 包名与类名之间一 个点.代表当前包下的类,两个点..表示当前包及子包下的类
  • 参数列表可以使用两个点.. 表示任意个数,任意类型的参数列表

e.g.

  1. execut ion (public void com. ithe ima. aop. Target . method() )
  2. execution (void com. itheima.aop.Target.*(..))
  3. execution(* com. itheima.aop. *.*(..) )
  4. execution(* com. itheima.aop. .*.* (..))
  5. execution(* *. .*.*(..) )

三、通知类型

image.png
通知的配置语法:

  1. <aop:通知类型 method="切面类中方法名" pointcut="切点表达式"></aop:通知类型>

四、切点表达式的抽取

  1. <aop:config>
  2. <!--声明切面-->
  3. <aop:aspect ref="myAspect">
  4. <!--抽取切点表达式-->
  5. <aop:pointcut id="myPointcut" expression="execution(* com.demo.aop.*.*(..))"></aop:pointcut>
  6. <!--切面:切点通知-->
  7. <aop:around method="around" pointcut-ref="myPointcut"/>
  8. <aop:after method="after" pointcut-ref="myPointcut"/>
  9. </aop:aspect>
  10. </aop:config>