在Spring-mvc拦截器中,如何访问处理程序控制器方法?
2022-09-04 06:15:13
在 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;
}
...
}
我发现:
但它只能解决。我希望方法名称可以访问注释。