我想知道是否有办法从HttpServletRequest对象中检索_servletName值。我基本上需要它来识别请求来自哪个servlet。这样的类没有提供任何检索该信息的方法
答案 0 :(得分:0)
HttpServletRequest.getServletPath()
您看过了吗:http://download.oracle.com/javaee/1.3/api/javax/servlet/http/HttpServletRequest.html?
答案 1 :(得分:0)
您是否尝试过Servlet Config方式?
ServletConfig sg=getServletConfig();
System.out.println(sg.getServletName());