spring——AOP(环绕通知)打印⽇志
<!-- 配置srping的Ioc,把service对象配置进来-->
<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>
<!-- 配置Logger类 -->
<bean id="logger" class="com.itheima.utils.Logger"></bean>
<!--配置AOP-->
<aop:config>
<!-- 配置切⼊点表达式 id属性⽤于指定表达式的唯⼀标识。expression属性⽤于指定表达式内容
此标签写在aop:aspect标签内部只能当前切⾯使⽤。
它还可以写在aop:aspect外⾯,此时就变成了所有切⾯可⽤
-->
<aop:pointcut id="pt1" expression="execution(* com.itheima.service.impl.*.*(..))"></aop:pointcut>
<!--配置切⾯ -->
<aop:aspect id="logAdvice" ref="logger">
<!-- 配置前置通知:在切⼊点⽅法执⾏之前执⾏
<aop:before method="beforePrintLog" pointcut-ref="pt1" ></aop:before>-->
<!-- 配置后置通知:在切⼊点⽅法正常执⾏之后值。它和异常通知永远只能执⾏⼀个
<aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>-->
<!-- 配置异常通知:在切⼊点⽅法执⾏产⽣异常之后执⾏。它和后置通知永远只能执⾏⼀个
<aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>-->
<!-- 配置最终通知:⽆论切⼊点⽅法是否正常执⾏它都会在其后⾯执⾏
<aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after>-->
<!-- 配置环绕通知详细的注释请看Logger类中-->
<aop:around method="aroundPringLog" pointcut-ref="pt1"></aop:around>
</aop:aspect>
</aop:config>
Logger.java:
package com.itheima.utils;
import org.aspectj.lang.ProceedingJoinPoint;
/**
* ⽤于记录⽇志的⼯具类,它⾥⾯提供了公共的代码
*/
public class Logger {
/
**
* 前置通知
*/
public  void beforePrintLog(){
System.out.println("前置通知Logger类中的beforePrintLog⽅法开始记录⽇志了。。。");
}
/**
* 后置通知
*/
public  void afterReturningPrintLog(){
System.out.println("后置通知Logger类中的afterReturningPrintLog⽅法开始记录⽇志了。。。");
}
/**
* 异常通知
*/
public  void afterThrowingPrintLog(){
public  void afterThrowingPrintLog(){
System.out.println("异常通知Logger类中的afterThrowingPrintLog⽅法开始记录⽇志了。。。");
}
/**
* 最终通知
*/
public  void afterPrintLog(){
System.out.println("最终通知Logger类中的afterPrintLog⽅法开始记录⽇志了。。。");
}
/**
* 环绕通知
* 问题:
*      当我们配置了环绕通知之后,切⼊点⽅法没有执⾏,⽽通知⽅法执⾏了。
* 分析:
*      通过对⽐动态代理中的环绕通知代码,发现动态代理的环绕通知有明确的切⼊点⽅法调⽤,⽽我们的代码中没有。
* 解决:
*      Spring框架为我们提供了⼀个接⼝:ProceedingJoinPoint。该接⼝有⼀个⽅法proceed(),此⽅法就相当于明确调⽤切⼊点⽅法。    *      该接⼝可以作为环绕通知的⽅法参数,在程序执⾏时,spring框架会为我们提供该接⼝的实现类供我们使⽤。
*
* spring中的环绕通知:
*      它是spring框架为我们提供的⼀种可以在代码中⼿动控制增强⽅法何时执⾏的⽅式。
*/
public Object aroundPringLog(ProceedingJoinPoint pjp){
Object rtValue = null;
try{
Object[] args = Args();//得到⽅法执⾏所需的参数
System.out.println("Logger类中的aroundPringLog⽅法开始记录⽇志了。。。前置");
rtValue = pjp.proceed(args);//明确调⽤业务层⽅法(切⼊点⽅法)
System.out.println("Logger类中的aroundPringLog⽅法开始记录⽇志了。。。后置");
return rtValue;
}catch (Throwable t){
System.out.println("Logger类中的aroundPringLog⽅法开始记录⽇志了。。。异常");
throw new RuntimeException(t);
}finally {
System.out.println("Logger类中的aroundPringLog⽅法开始记录⽇志了。。。最终");
}
}
}
package com.itheima.service.impl;
import com.itheima.service.IAccountService;
/**
* 账户的业务层实现类
*/
public class AccountServiceImpl implements IAccountService{
@Override
public void saveAccount() {
System.out.println("执⾏了保存");
//        int i=1/0;
}
@Override
public void updateAccount(int i) {
System.out.println("执⾏了更新"+i);
}
@Override
public int deleteAccount() {
System.out.println("执⾏了删除");
return 0;
}
}
package st;
import com.itheima.service.IAccountService;
import t.ApplicationContext;
import t.support.ClassPathXmlApplicationContext;
/**
spring aop应用场景* 测试AOP的配置
*/
public class AOPTest {
public static void main(String[] args) {
//1.获取容器
ApplicationContext ac = new ClassPathXmlApplicationContext("l");        //2.获取对象
IAccountService as = (Bean("accountService");
/
/3.执⾏⽅法
as.saveAccount();
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。