2008-07-18

web.xml 中显示错误页面

关键字: web.xml 中显示错误页面
【转】今天遇到一个问题(应该是个老问题,但网上答案各异),记录下来 在web.xml中配置错误页面跳转如下: <error-page> <exception-type>java.lang.Exception</exception-type> <location>/err/error.jsp</location> </error-page> 或者 <error-page> <error-code>500</error-code> <location>/err/error.jsp ...