opentracing-contrib / java-web-servlet-filter

OpenTracing Java Web Servlet Filter Instrumentation
Apache License 2.0
24 stars 31 forks source link

Fix NullPointerException thrown in jetty non-context (ServletHandler) servlet handling #62

Closed jianshaow closed 4 years ago

jianshaow commented 4 years ago

If use ServletHandler as servlet handler, like below

ServletHandler servletHandler = new ServletHandler();
servletHandler.addServletWithMapping(TestServlet.class, "/hello");
jettyServer = new Server(0);
jettyServer.setHandler(servletHandler);

httpServletRequest.getContextPath() wil return null, add a null judgment can fix it