Skip to content
Advertisement

how to pick set joinpoints in specific methods in AspectJ

I’m developing an Advice and I want to make it advise only on field sets in specific methods. I tried cflow(pointcutForSpecificMethod()) && set(* *) pointcut expression but it picks field sets in other methods under control flow of specific methods.

Any idea?

Advertisement

Answer

This is not possible directly with an exact pointcut expression, but you can use if() pointcuts to dynamically determine from the stack trace or – like in this case – from the enclosing join point static part exposed by AspectJ – what the executing method is. Here is a little example and an aspect in two variants: native syntax (my preference, more elegant and less boilerplate) and annotation-style syntax:

JavaScript
JavaScript
JavaScript

I tried to keep the two aspects as similar as possible structurally. No matter which aspect syntax variant you choose, the output will be:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement