Servlet – web.xml 中的欢迎文件列表
web.xml 文件的welcome-file-list 属性用于建立欢迎文件列表。如果您在浏览器中加载项目时没有提供文件名,则标签
- web.xml 中的欢迎文件列表
- 索引.html
- 索引.htm
- 索引.jsp
如果没有找到这些文件,服务器将返回 404 错误。
web.xml 中的welcome-file-list 属性的代码
XML
....
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp
XML
WelcomeFileList
welcome.html
HTML
welcome
Welcome to GeeksForGeeks
欢迎文件列表的工作
Welcome-file-list 是网络服务器首先检查的内容。如果存在,它会搜索在初始欢迎文件中指定的文件。如果此文件存在,则将控制权发送给它;否则,网络服务器将转到下一个欢迎文件,依此类推。如果welcome-file-list 不存在,或者welcome-file-list 中定义的文件不存在,服务器将查看默认的欢迎文件,即index.html、index.htm、index.jsp 、default.html、default.htm 和 default.jsp 的顺序。
例子
web.xml
XML
WelcomeFileList
welcome.html
欢迎.html
HTML
welcome
Welcome to GeeksForGeeks
输出: