В перехватчике 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;
}
...
}
Я нашел:
how-to-get-controller-method-name-in-spring-interceptor-prehandle-method
Но он работает только. Я хочу, чтобы имя метода получало доступ к аннотации.