user3269829
user3269829

Reputation: 141

Using spring AOP aspect to intercept the methods?

I am using spring AOP to intercept the methods. I have below configuration in my spring config file.

<aop:aspectj-autoproxy />

Aspect class:

@Aspect
public class MyAspect{

 @Around("execution(public * *(..))")
public Object doAction(ProceedingJoinPoint call) throws Throwable {

 //somelogic
}

Above method does not intercept private methods ? what should i do to ask the aspect to intercept both private and public methods?

Upvotes: 2

Views: 1082

Answers (1)

Andres
Andres

Reputation: 10727

Private methods may not be intercepted, as they may not be invoked through a proxy.

However, you could use native AspectJ weaving, as you can see on the point 8.8.4 of the following page:

http://docs.spring.io/spring/docs/4.0.0.RELEASE/spring-framework-reference/html/aop.html#aop-pointcuts-designators

Upvotes: 5

Related Questions