Spring_后置通知after的用法

需要更多教程,微信扫码即可
 

后置通知:原始方法执行后执行,无论原始方法中是否出现异常,都将执行通知

应用:现场清理

aop:after

  • 名称:aop:after

  • 类型:标签

  • 归属:aop:aspect标签

  • 作用:设置后置通知

  • 格式:

    <aop:aspect ref="adviceId">
       <aop:after method="methodName" pointcut="……"/>
    </aop:aspect>
  • 说明:一个aop:aspect标签中可以配置多个aop:after标签

  • 基本属性:

    • method :在通知类中设置当前通知类别对应的方法

    • pointcut :设置当前通知对应的切入点表达式,与pointcut-ref属性冲突

    • pointcut-ref :设置当前通知对应的切入点id,与pointcut属性冲突

后置通知配置

1.创建通知类

public class AOPAdvice {    public void after( ){        System.out.println("我是后置通知...");    }}

创建UserServiceImpl类

public class UserServiceImpl implements UserService {    @Override    public void add(String name) {        System.out.println("add()执行了,name="+name);    }}

2.修改spring配置文件,进行前置通知的配置

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xmlns:aop="http://www.springframework.org/schema/aop"       xsi:schemaLocation="http://www.springframework.org/schema/beans        https://www.springframework.org/schema/beans/spring-beans.xsd        http://www.springframework.org/schema/aop        https://www.springframework.org/schema/aop/spring-aop.xsd">   <!--将所有进行AOP操作的资源加载到IoC容器中-->    <bean id="aopadvice" class="com.javaxxf.aop.AOPAdvice" />    <!--aop配置-->    <aop:config>        <aop:pointcut id="pt" expression="execution(* *..*(..))"/>        <!--配置切面-->        <aop:aspect ref="aopadvice">            <!--通知与切入点之间的关系-->            <aop:after method="after" pointcut-ref="pt" />        </aop:aspect>    </aop:config>    <!--配置service bean-->    <bean id="userService" class="com.javaxxf.service.Impl.UserServiceImpl"/></beans>

6.运行程序

public class UserController {    public static void main(String[] args) {        ApplicationContext ac=new ClassPathXmlApplicationContext("applicationContext.xml");        UserService userService= (UserService) ac.getBean("userService");        userService.add("我爱学java");       //根据id查询user    }}

结果:

图片

后置通知获取执行方法的参数数据

和前置通知获取参数的方式一样,我这里不演示了。

后置通知获取执行方法的返回值

虽然这个是在目标执行方法后运行的,但是目标方法要是出现异常了,就不会执行这个后置通知了,所以程序也不能确定会不会出现异常,因为不确定性所以这个后置通知也是获取不了返回值的。

后置通知获取执行方法的异常信息

虽然这个是在目标执行方法后运行的,但是目标方法要是出现异常了,就不会执行这个后置通知了,所以程序也不能确定会不会出现异常,因为不确定性,所以这个后置通知也是获取不了执行方法的异常信息

 Spring学习交流、资料领取。扫码即可哦!

文末福利

需要更多教程,微信扫码即可
   

                   别忘了扫码领取资料哦                 
  【高清Java学习线路图】和【全套学习视频及相关资料】  

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值