首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web.xml中的welcome-file-list有关问题解决

2012-08-28 
web.xml中的welcome-file-list问题解决我用structs2时候web.xml配置如下welcome-file-listwelcome-file

web.xml中的welcome-file-list问题解决
我用structs2时候web.xml配置如下
<welcome-file-list>
  <welcome-file>index.htm</welcome-file>
</welcome-file-list>
启动服务器,终是报404错误,但我在地址栏手工加入index.htm时,页面正常显示.
解决:
tomcat 会去检查有没有index.htm这个文件.
先读取 welcome list,然后取得第一个index,然后到web中的路径中查找有没有这个文件,没有继续第二个.依次下去。在WebRoot下建立一个index.htm空文件就可以正常访问.

热点排行