Pointcut declaration:
@Pointcut(value="com.someapp.someservice.someOperation() && args(t,req)",argNames="t,req")
private void logOperationArg(final String t,final String req)
{
}
Advice Declaration not compiling:
@Before(value="logOperationArg(t,req)")
public void logBeforeOperationAdvice(JoinPoint jp, final String t, final String req){
...
}
When compiling Aspect with Aspectj-maven-plugin (1.5 version), have error "can not build thisJoinPoint lazily for this advice since it has no suitable guard [Xlint:noGuardForLazyTjp]"
But the same advice compiles without JoinPoint argument.
Advice Declaration compiling:
@Before(value="logOperationArg(t,req)")
public void logBeforeOperationAdvice(final String t, final String req){
...
}
Spring AOP
only supportsmethod join points
because it is based ondynamic proxies
which creates proxied object if it is needed (for example if you are using ApplicationContext, it will be created after beans are loaded fromBeanFactory
)Use
execution()
statement to match join points which are methods execution.For example:
And now how to declare your BO:
then:
execution()
statement is a PointCut expression to tell where your advice should be applied.If you like to use
@PointCut
, you can do something like this:Part2:
Also,the Error shows that you haven't put a guard on your advice. Technically guard makes your code faster, because you do not need construct thisJoinPoint everytime you execute it. So, if it does not make sense you can try to ignore it