web程序出現異常時實現頁面跳轉

在web.xml配置文件下配置跳轉頁面

<!-- 異常跳轉頁面 -->
    <error-page>    
        <error-code>403</error-code>    
        <location>/error-404.html</location>    
    </error-page>    
    <error-page>    
        <error-code>404</error-code>    
        <location>/error-404.html</location>    
    </error-page>    
    <error-page>    
        <error-code>405</error-code>    
        <location>/error-404.html</location>    
    </error-page>    
    <error-page>    
        <error-code>500</error-code>    
        <location>/error-404.html</location>    
    </error-page>  
    <error-page>    <!--也可以指定異常類型(空指針等)-->
        <exception-type>java.lang.Exception</exception-type>  
        <location>/error-404.html</location>    
    </error-page>  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章