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中配置如上

posted @ 2016-08-30 13:03  yangxu6069  阅读(89)  评论(0编辑  收藏  举报