aop联盟定义通知类型,具有特性接口,必须实现,从而确定方法名称。
aspectj 通知类型,只定义类型名称,以及方法格式。
个数:6种,知道5种,掌握1中。
before:前置通知(应用:各种校验)
在方法执行前执行,如果通知抛出异常,阻止方法运行
afterReturning:后置通知(应用:常规数据处理)
方法正常返回后执行,如果方法中抛出异常,通知无法执行
必须在方法执行后才执行,所以可以获得方法的返回值。
around:环绕通知(应用:十分强大,可以做任何事情)
方法执行前后分别执行,可以阻止方法的执行
必须手动执行目标方法
afterThrowing:抛出异常通知(应用:包装异常信息)
方法抛出异常后执行,如果方法没有抛出异常,无法执行
after:最终通知(应用:清理现场)
方法执行完毕后执行,无论方法中是否出现异常
切面类
@Override
public void before(JoinPoint joinPoint) {
System.out.println("前置通知");
}
@Override
public void afterReturning(JoinPoint joinPoint, Object ret) {
System.out.println("后置通知");
}
@Override
public Object around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
System.out.println("前环绕");
Object o=proceedingJoinPoint.proceed();
System.out.println("后环绕");
return o;
}
@Override
public void afterThrowing(JoinPoint joinPoint, Throwable throwable) {
System.out.println("异常通知");
}
@Override
public void after() {
System.out.println("最终通知");
}
xml配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
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
">
<!-- 目标类-->
<bean id="userService" class="xunfang.service.impl.UserServiceImpl"></bean>
<bean id="userService1" class="xunfang.service.impl.UserServiceImpl2"></bean>
<bean id="userService2" class="xunfang.service.impl.UserServiceImpl3"></bean>
<bean id="userService3" class="xunfang.service.impl.UserServiceImpl4"></bean>
<!-- 切面类-->
<bean id="myAspect5" class="xunfang.aspect.MyAspect5"></bean>
<!-- AspectJ配置 5种通知练手-->
<aop:config>
<aop:pointcut id="addPointcut" expression="execution(* xunfang.service.impl.*.add*(..))"/>
<aop:pointcut id="deletePointcut" expression="execution(* xunfang.service.impl.*.delete*(..))"/>
<aop:pointcut id="updatePointcut" expression="execution(* xunfang.service.impl.*.update*(..))"/>
<aop:pointcut id="seletePointcut" expression="execution(* xunfang.service.impl.*.selete*(..))"/>
<aop:aspect ref="myAspect5">
<aop:before method="before" pointcut-ref="addPointcut"></aop:before>
<aop:after-returning method="afterReturning" pointcut-ref="deletePointcut" returning="ret"></aop:after-returning>
<aop:around method="around" pointcut-ref="updatePointcut"></aop:around>
<aop:after-throwing method="afterThrowing" pointcut-ref="seletePointcut" throwing="throwable"></aop:after-throwing>
<aop:after method="after" pointcut-ref="seletePointcut"></aop:after>
</aop:aspect>
</aop:config>
</beans>
测试
@Test
public void test1(){
ApplicationContext context =
new ClassPathXmlApplicationContext("AspectJ.xml");
UserService userService =
(UserService) context.getBean("userService");
System.out.println("------------------------------------------------");
userService.add();
System.out.println("------------------------------------------------");
userService.delete();
System.out.println("------------------------------------------------");
userService.update();
System.out.println("------------------------------------------------");
userService.selete();
System.out.println("------------------------------------------------");
}
------------------------------------------------
前置通知
添加1
------------------------------------------------
删除1
后置通知
------------------------------------------------
前环绕
改动1
后环绕
------------------------------------------------
最终通知
------------------------------------------------