There are two methods defined in ABC.java
public void method1(){
.........
method2();
...........
}
public void method2(){
...............
...............
}
I want to have AOP on call of method2.So,
I created one class,AOPLogger.java,having aspect functionality provided in a method checkAccess
In configuration file, I did something like below
<bean id="advice" class="p.AOPLogger" />
<aop:config>
<aop:pointcut id="abc" expression="execution(*p.ABC.method2(..))" />
<aop:aspect id="service" ref="advice">
<aop:before pointcut-ref="abc" method="checkAccess" />
</aop:aspect>
</aop:config>
But when my method2 is called, AOP functionality is not getting invoked i.e. checkAccess method is not getting invoked of AOPLogger class.
Any thing i am missing?
Using
@Autowired
it works. Instead of calling the inner method asthis.method()
, you can do:and then calling:
As indicated in the Spring docs, chapter 5.6.1 Understanding AOP proxies, there is another way you can do:
Although the author doesn't recommand this way. Because:
I had the same kind of problem and I overcame by implementing Spring's
ApplicationContextAware
,BeanNameAware
and implementing corresponding methods as below.then I replaced
this.
with((ABC) applicationContext.getBean(beanName)).
while calling the methods of the same class. This ensures that calls to methods of the same class happen through the proxy only.So
method1()
changes toHope this helps.
You can do self-injection this way so that this class can be used outside Spring application.
It can be done by self injection usage. You can call inner method through injected instance:
Since Spring 4.3 you also can do it using @Autowired.
The aspect is applied to a proxy surrounding the bean. Note that everytime you get a reference to a bean, it's not actually the class referenced in your config, but a synthetic class implementing the relevant interfaces, delegating to the actual class and adding functionality, such as your AOP.
In your above example you're calling directly on the class, whereas if that class instance is injected into another as a Spring bean, it's injected as its proxy, and hence method calls will be invoked on the proxy (and the aspects will be triggered)
If you want to achieve the above, you could split
method1
/method2
into separate beans, or use a non-spring-orientated AOP framework.The Spring doc details this, and a couple of workarounds (including my first suggestion above)