我们可以为未使用 spring 注释的 class 进行 AOP 日志记录吗
can we do AOP logging for class which is not annotated with spring annotation
我想为此 class 进行 AspectJ 日志记录,任何人都可以向我建议如何做或者甚至可能吗?
public class Class{
public void method(){
// code
}
}
不,Spring AOP 将只处理 Spring 管理的 Bean。
我想为此 class 进行 AspectJ 日志记录,任何人都可以向我建议如何做或者甚至可能吗?
public class Class{
public void method(){
// code
}
}
不,Spring AOP 将只处理 Spring 管理的 Bean。