Is it possible to have a pointcut expression match based on the method argument name?
For example, I want to match all methods with employeeId
as an argument.
public Employee findById(Integer employeeId);
I can't match by data type because it would be too broad.
I know I can use the wildcards to match anything i.e. "execution(* * (..))"
and check for the argument name in the method body, but that seems excessive?