欢迎页
欢迎页默认为index.html,index.jsp,index.htm
<!--设置欢迎页面-->
<welcome-file-list>
<welcome-file>login.html</welcome-file>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<welcome-file></welcome-file>
可以配置多个,优先级从上往下。
欢迎页不止可以是静态资源,也可以是动态资源。
- 静态资源:index.html login.html …
- 动态资源:Servlet类。
<welcome-file></welcome-file>
中写<url-pattern></url-pattern>
里的内容
WEB-INF
放在WEB-INF目录下的资源是受保护的,在浏览器上不能够通过路径直接访问。
HTML、CSS、JS、image等静态资源一定要放到WEB-INF目录之外。