How can I get the name of argument in aspect, for example if my method is test(Sample sampleDto), I need know the name of sampleDto in my aspect. How get it from ProceedingJoinPoint ? I try this, but I get null.
String[] argumentsName = ((MethodSignature) proceedingJoinPoint.getSignature()).getParameterNames()