我在哪里定义http:// localhost:8080 /“homepage”

时间:2017-03-23 07:51:35

标签: java xml eclipse maven tomcat

我正在使用eclipse,我使用Apache Tomcat运行我的项目。

我有以下文件:

1。的applicationContext.xml

2。调度员servlet.xml中

第3。的web.xml

4。的pom.xml

我也有以下套餐

controller,dao,impl,model。

我希望我的主页成为“MyHomePage”。因此,当我运行项目时,我的第一个网址将是:http://localhost:8080/MyHomePage

我必须在上面的哪个文件/包中定义这个映射?

1 个答案:

答案 0 :(得分:0)

如果您的意思是http://localhost:8080/MyHomePage.html

然后您在web.xml中指定主页

<web-app>
 ....
  <welcome-file-list>
   <welcome-file>MyHomePage.html</welcome-file>
  </welcome-file-list>
</web-app>

您还需要在网站的根文件夹中放置一个名为MyHomePage.html的html文件,对于Tomcat,它是WebContent:

WebContent
 |-- META-INF
 |-- WEB-INF
 |    `-- web.xml
 `-- MyHomePage.html