如何通过配置web.xml将URL模式从/index.jsp更改为/test/index.jsp?

时间:2014-01-09 09:44:05

标签: java xml jsp servlets web.xml

我在根文件夹(webcontent)中有一个名为index.jsp的jsp文件,到目前为止我只是使用以下URL访问该页面:

  

http://localhost:8080/Sample/index.jsp

Sample是项目名称。

现在我被要求将URL模式更改为以下内容而不更改index.jsp文件的位置(即index.jsp仍在webcontent文件夹下):

  

http://localhost:8080/Sample/test/index.jsp

如何通过配置web.xml来实现这一目标?

1 个答案:

答案 0 :(得分:3)

这可以通过以下方式实现

  <servlet>
    <servlet-name>BeerAppServlet</servlet-name>
    <jsp-file>/index.jsp</jsp-file>
  </servlet>
  <servlet-mapping>
    <servlet-name>BeerAppServlet</servlet-name>
    <url-pattern>/test/index.jsp</url-pattern>
  </servlet-mapping>

<servlet>中,而不是将其映射到<servlet-class>,将其映射到<jsp-file>