Hi,
I am a new user of AspectJ, currently adding some aspects to my Spring beans, thanks to annotations.
I wonder if it is possible to modify arguments (even immutable ones, String for example), in order to format/normalize them, before a method is invoked?
@FormatName void addUser(String name);
OR
void addUser(@FormatName String name);