eclipse中的目录结构是 -
MyProjectName(
WebContent(
META-INF(
MANIFEST.MF
),
app(
appname(
index.html
)
),
WEB-INF(web.xml)
)
)
我可以使用tomcat7访问我的项目
http://
我想使用它来访问它
localhost
:8080/MyProjectName/app/appname/index.htmllocalhost
我没有使用除html / js / css之外的任何其他代码,并且所有代码仅在Webapps目录中。
Spring,Tomcat7,windows7是平台。
答案 0 :(得分:0)
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>/app/appname/index.html</welcome-file>
</welcome-file-list>