web.xml之welcome-file-list、error-page

welcome-file-list

  1. 定义:
    <welcome-file-list>
    <welcome-file>login.jsp</welcome>
    </welcome-file-list>

  2. 作用:用来指定WEB应用首页名称。

error-page

  1. 定义:
    <error-page>
    <error-code>错误代码(如404)</error-code>
    <location>对应的页面(如/404.jsp)</location>
    </error-page>
    

    或者
    <error-page>
    <exception-type>完整的Java异常类型(如java.lang.Exception)</exception-type>
    <location>对应的页面(如/error.jsp)</location>
    </error-page>

  2. 作用:用来指定发生特定htm的error-code或发生特定Java异常时访问的Web页面

你可能感兴趣的:(java,Web)