从HttpServletRequest对象中检索_servletName

时间:2011-11-01 18:15:46

标签: java http servlets

我想知道是否有办法从HttpServletRequest对象中检索_servletName值。我基本上需要它来识别请求来自哪个servlet。这样的类没有提供任何检索该信息的方法

2 个答案:

答案 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());