首页 > 代码库 > 404 web 配置

404 web 配置

        <!-- 指定出错的代码 -->    <error-page>        <error-code>404</error-code>        <location>/WEB-INF/error.jsp</location>    </error-page>        <error-page>        <error-code>500</error-code>        <location>/WEB-INF/error.jsp</location>    </error-page>    <error-page>    <!-- 异常类型 -->        <exception-type>java.lang.Exception</exception-type>        <location>/WEB-INF/error.jsp</location>    </error-page>    

web.xml中配置如上

404 web 配置