到处学习

2012年5月31日 #

web.xml错误信息转向配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>mnoa</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    
    <!-- 根据错误码进行跳转 -->

    <error-page>

        <error-code>500</error-code>

        <location>/error.jsp</location>

    </error-page>

    <!-- 根据异常进行跳转 -->

    <error-page>

        <exception-type>java.lang.NullException</exception-type>

        <location>/error.jsp</location>

    </error-page>
</web-app>

posted @ 2012-05-31 22:48 小雨 阅读(344) | 评论 (0)编辑 收藏

仅列出标题