spring boot2.0 ResourceHttpRequestHandler cannot be cast to HandlerMethod

      在spring boot 2.0项目中写拦截器时,遇到一个小问题,记录一下。错误日志如下:

java.lang.ClassCastException: org.springframework.web.servlet.resource.ResourceHttpRequestHandler cannot be cast to org.springframework.web.method.HandlerMethod

      拦截器中的preHandler方法部分代码如下:

public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object handler) throws Exception {
            //此处报错
            HandlerMethod handlerMethod = (HandlerMethod) handler;
    }

     原因就在于,spring boot 2.0对静态资源也进行了拦截,当拦截器拦截到请求之后,但controller里并没有对应的请求时,该请求会被当成是对静态资源的请求。此时的handler就是 ResourceHttpRequestHandler,就会抛出上述错误。

     解决办法就是,在拦截器那里排除静态资源的请求路径

registry.addInterceptor(new JJRUserLoginInterceptor()).addPathPatterns("/xx/**")
                .excludePathPatterns("/xx/**");

     然后再preHandler报错那里加上 instanceof关键字进行判断。

你可能感兴趣的:(spring,boot,2.0,问题汇总)