I have a ShapeService which I get from the application context. The shapeService is injected with a Circle and Triangle. I have getCircle() and getTriangle() in my shapeService. I also have an advice which is configured to get triggered whenever getter is called. The pointcut expression that is specified such that it is applicable for all the getters. So whenever getCircle() or getTriangle() gets called the advice gets triggered. But I was wondering why that is not getting triggered for applicationContext.getBean(). That is also a getter which satisfies the pointcut expression. Can anyone help me out figuring why it is not getting triggered.
@Aspect
@Component
public class LoggingAspect {
@Before("allGetters()")
public void loggingAdvice(JoinPoint joinPoint){
System.out.println(joinPoint.getTarget());
}
@Pointcut("execution(public * get*(..))")
public void allGetters(){}
}
This is the main class that gets the bean. Only the Shapeservice's getter and circle's getter is getting triggered and not the apllicationContext's getBean
public class AopMain {
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext("spring-config.xml");
ShapeService shapeService = ctx.getBean("shapeService", ShapeService.class);
System.out.println(shapeService.getCircle().getName());
}
}
Thanks