在 Spring-mvc 拦截器中,我想访问处理程序控制器方法
public class CustomInterceptor implements HandlerInterceptor {
public boolean preHandle(
HttpServletRequest request,HttpServletResponse response,
Object handler) {
log.info(handler.getClass().getName()); //access to the controller class
//I want to have the controller method
...
return true;
}
...
}
我已经找到 :
如何在spring-interceptor-prehandle-method中获取控制器方法名称
但它只能解决。我希望方法名称能够访问注释。