class Person{
@A
void method eat(){}
@B
void method work(){
eat();
}
}
现象
方法 work 调用方法eat eat 的注解不起作用
解决方法
定义一个class 将eat方法移动到新的class中
参考
Spring AOP not working for method call inside another method
class Person{
@A
void method eat(){}
@B
void method work(){
eat();
}
}
方法 work 调用方法eat eat 的注解不起作用
定义一个class 将eat方法移动到新的class中
Spring AOP not working for method call inside another method
转载于:https://my.oschina.net/u/732556/blog/1529370