spring mvc aop获取controller中的方法中的参数名称

//配置切入点,该方法无方法体,主要为方便同类中其他方法使用此处配置的切入点
//"execution(* com.nong.aop.*.controller..*.*(..))"
/*@Pointcut("execution(* com.nong.aop.*.controller.*(..))")
public void aspect(){}

     // 配置前置通知,使用在方法aspect()上注册的切入点
     //同时接受JoinPoint切入点对象,可以没有该参数

    @Before(value="aspect()",argNames="prames")
    public void before(JoinPoint joinPoint){
    }

怎么搞啊?参数名怎么获取?

反射可以 其他还有吗 遇到一样的问题