获取Servlet路径
一、方法
✅
//获取Servlet路径`String servletpath = request.getServletPath();``System.out.println(servletpath);`
二、实现
public class RequestTestServlet extends HttpServlet {@Overrideprotected void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {//获取Servlet路径String servletpath = request.getServletPath();System.out.println("servletpath");response.setContentType("text/html");PrintWriter out = response.getWriter();out.print(servletpath);}}
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"version="4.0"><servlet><servlet-name>RequestTestServlet</servlet-name><servlet-class>servlet.RequestTestServlet</servlet-class></servlet><servlet-mapping><servlet-name>RequestTestServlet</servlet-name><url-pattern>/testrequest</url-pattern></servlet-mapping></web-app>

