Search code examples
springspring-bootspring-aopjava.util.loggingspring-logback

can we do AOP logging for class which is not annotated with spring annotation


I want to do AspectJ logging for this class, can anyone suggest to me how to do it or will it even be possible?

public class Class{
  public void method(){
    // code
  }
}

Solution

  • No, Spring AOP will only handle Spring-managed Beans.