3
是否可以根據Spring AOP中的參數名獲取方法參數值?Spring AOP根據參數名得到方法參數值
MethodSignature signature = (MethodSignature) proceedingJoinPoint.getSignature();
Method method = signature.getMethod();
method.getParameters().getName()
// possible to get the paramater names
此方法將獲取參數名稱,而不是值。
proceedingJoinPoint.getArgs()
將返回不名
然後是有可能得到基於參數名的值值?