ResourceHttpRequestHandler cannot be cast to HandlerMethod
报错:java.lang.ClassCastException: org.springframework.web.servlet.resource.ResourceHttpRequestHandler cannot be cast to org.springframework.web.method.HandlerMethod原因就在于,Spring boot 2.0对静态资源也进行了拦截,当拦截器
·
报错:
java.lang.ClassCastException: org.springframework.web.servlet.resource.ResourceHttpRequestHandler cannot be cast to org.springframework.web.method.HandlerMethod
原因就在于,Spring boot 2.0对静态资源也进行了拦截,当拦截器拦截到请求之后,但controller里并没有对应的请求时,该请求会被当成是对静态资源的请求。此时的handler就是 ResourceHttpRequestHandler,就会抛出上述错误。
解决办法就是,在拦截器那里排除静态资源的请求路径
然后再preHandler报错那里加上 instanceof关键字进行判断。
更多推荐
已为社区贡献7条内容
所有评论(0)