I want to use Spring Expression Language in a custom Annotation. This annotation will be consumed by a custom Aspect.
Check this out:
@StatisticEventTrigger(value = TestStatisticEvent.class, expression = "#p1")
public void someOtherMethod(String arg1, Long arg2) {
As you can see, i want to use the expression (in this case) to retrieve some specific argument.
When I have my Aspect, triggering an annotated method, i would like to evaluate the spring expression (programmatically) to retrieve a value to use for further business stuff ;)
Any ideas? Google was not my friend so far!
I figured it out how to do that with SpEL. I used following expression:
and following Java code:
Works fine ;)
UPDATE
Here is a complete code example now:
}