gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 05:31:17 25 4
gpt4 key购买 nike

我在根文件夹 (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来实现?

最佳答案

可以通过以下方式实现

  <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>

关于java - 如何通过配置web.xml 将URL pattern 从/index.jsp 更改为/test/index.jsp?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21016543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com