在JSP如何自定义错误网页

发表于:2007-07-04来源:作者:点击数: 标签:

WEB.XML配置如下:
<web-app>
<error-page>
<error-code>500</error-code>
<location>/error/nopage.html</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/error/error.jsp</location>
</error-page>
</web-app>

-----DND-----

原文转自:http://www.ltesting.net