为什么我抛出异常后还是执行了afterReturning,代码错误,非问题

来源:5-4 Advice应用(上)

未卜先知

2017-01-08 21:13


public class AspectBiz {

    public void biz() {
        System.out.println("AspectBiz biz.");
        throw new RuntimeException();// 强制抛出异常
    }
}

MoocAspect before.
AspectBiz biz.
MoocAspect afterReturning
MoocAspect afterThrowing.

看了debug,查配置,找到问题了

写回答 关注

1回答

  • 如遇明主
    2017-01-08 21:52:23
    已采纳

    不可能的事啊,应该你写错了,你的test代码和配置的代码上来给我看看

    未卜先知

    确实写错了

    2017-01-08 22:40:19

    共 3 条回复 >

Spring入门篇

为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础

268787 学习 · 963 问题

查看课程

相似问题