我正在使用eclipse,我使用Apache Tomcat运行我的项目。
我有以下文件:
1。的applicationContext.xml
2。调度员servlet.xml中
第3。的web.xml
4。的pom.xml
我也有以下套餐
controller,dao,impl,model。
我希望我的主页成为“MyHomePage”。因此,当我运行项目时,我的第一个网址将是:http://localhost:8080/MyHomePage。
我必须在上面的哪个文件/包中定义这个映射?
答案 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