gpt4 book ai didi

java - eclipse 动态 web 项目 - 默认起始页

转载 作者:搜寻专家 更新时间:2023-10-30 21:44:00 24 4
gpt4 key购买 nike

我在 Eclipse 中创建了动态 Web 项目,我在 WEB-INF 文件夹中有 index.html。我单击项目的主文件夹 Run as > Run on server 选择 Tomcat v7.0,完成,它运行正常。但是,当我将 index.html 重命名为另一个名称时,我收到消息:

The requested resource (/MyProject/) is not available.

  1. 如何更改默认页面?
  2. 我可以放入默认页面 asp 文件吗?

我的 web.xml 是:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>MyFirstServlet</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<description>new</description>
<display-name>GrettingServlet</display-name>
<servlet-name>GrettingServlet</servlet-name>
<servlet-class>GrettingServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>GrettingServlet</servlet-name>
<url-pattern>/GrettingServlet</url-pattern>
</servlet-mapping>
</web-app>

最佳答案

在 web.xml 中(在 TOMCAT_HOME/webapps/you_application 下)你有这个:

<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
<welcome-file>/axis2-web/index.jsp</welcome-file>
</welcome-file-list>

更改为您的新文件名

关于java - eclipse 动态 web 项目 - 默认起始页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11632227/

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