为了给浏览者一个友好的错误提示页面,我们可以象IIS一样自定义错误页面;
步骤如下:
一、打开WEB-INF文件夹下web.xml文件;
二、在里面新增:
''404页面不存在错误
<error-page>
<error-code>404</error-code>
<location>/errorpage404.htm</location>
</error-page>
''505服务器内部错误
<error-page>
<error-code>505</error-code>
<location>/errorpage505.htm</location>
</error-page>
''java.lang.NumberFormatException异常错误,依据这个标记你可以定义好多,you can any fire:)!@
<error-page>
<exception-type>java.lang.NumberFormatException</exception-type>
<location>/exception.htm</location>
</error-page>
三、保存web.xml文件,reload服务即ok!
Good Luck!!