Springboot Error logging

Source: Internet
Author: User

1. Handler cannot is cast to Handlermethod in interceptors

Java.lang.ClassCastException:org.springframework.web.servlet.resource.ResourceHttpRequestHandler cannot is cast to Org.springframework.web.method.HandlerMethod

 Public boolean prehandle (HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse, Object handler ) throws Exception {            // error here            Handlermethod handlermethod = (Handlermethod) handler;    }

The reason is that Spring Boot 2.0 also intercepts static resources, and when the interceptor intercepts the request, but the controller does not have a corresponding request, the request is considered a request to the static resource. At this point the handler is Resourcehttprequesthandler, the above error will be thrown.

Workaround:

1. Interceptor where the request path of the static resource is excluded

Registry.addinterceptor (new myinterceptor ()). Addpathpatterns ("/xx/**")                . Excludepathpatterns ("/xx/**");

2. instanceof keywords to judge.

if(Handler instanceof Resourcehttprequesthandler) {logger.info ("---------resourcehttprequesthandler-------"+ handler.tostring () +"------------"); }Else if(Handler instanceof Handlermethod) {logger.info ("--------Handlermethod--------"+ handler.tostring () +"------------"); }

Springboot Error logging

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.