TomCat 环境的搭建
常见的状态码:200:正常 403:权限不足 404:资源不存在 500:服务器错误(代码错误)
自己的项目存储再TomCat中的Webapps里面
自己的项目中必存在WEB-INF这个文件夹,其中还必须包含web.xml这个文件。
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.xhtml</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
这种可以用来设置首页面是什么,并且顺序是由上而下的。