要设置Tomcat默认访问页面,需要进行以下步骤:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
在以上代码段中,可以看到Tomcat默认的访问页面是以index.html、index.htm和index.jsp的顺序进行查找并显示。可以按照自己的需求进行修改顺序或添加其他页面。
保存web.xml文件,并重新启动Tomcat服务器。
这样设置后,当访问Tomcat的根目录时,就会自动根据设置的顺序查找并显示对应的默认页面。