I'd like to match a method like this:
@Foo
public void boo(@Baz Bar bar) { ... }
Basically:
- the method has a
@Fooannotation (which I match withexecution(@Foo * *(..)) && @annotation(foo)), - can have a variable amount of parameters,
- and one of them should have a
@Bazannotation, - I need to further work with that annotated argument (
bar).
If a method has a @Foo annotation but is missing a @Baz annotation, I want to get an error as early as possible, if possible when weaving and not at runtime.
How can I do that?