TOMCAT里,在webapps下有index.htm和index.jsp,如果让tomcat优先认index...
发布网友
发布时间:2024-10-03 13:28
我来回答
共3个回答
热心网友
时间:2024-10-06 18:06
没有index.jsp,你直接打根目录当然什么也不显示。因为web.xml的目的就是配置web项目的基本信息,里面默认的是这样:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
找不到这个页面当然什么也没有啊。
你可以修改这个文件:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
这样默认先找index.html,如果没有,在接着往下找,这里可以包含一个或者一个以上的文件,
希望我的讲法你能明白,也对你有帮助。
热心网友
时间:2024-10-06 18:11
tomcat文件夹下有个conf文件夹,里面的web.xml最下面
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
把你想要的最先被认的文件名放前面就好了
热心网友
时间:2024-10-06 18:13
在 tomcat 下面的 conf 文件下 有个 web.xml
将<welcome-file>index.jsp</welcome-file>
改为
<welcome-file>index.html</welcome-file>
ps:
在实际开发中是不允许这样做的!