public class AspectBiz {
public void biz() {
System.out.println("AspectBiz biz.");
throw new RuntimeException();// 强制抛出异常
}
}MoocAspect before.
AspectBiz biz.
MoocAspect afterReturning
MoocAspect afterThrowing.
看了debug,查配置,找到问题了
不可能的事啊,应该你写错了,你的test代码和配置的代码上来给我看看