JSP:如何使用web.xml文件对出错进行处理
新手问题:
在调试JSP程序的时候出现404错误或者其他错误
如何使用web.xml文件
使其转到一个响应的提示错误页面呢?
以前学习过
但是忘记怎么做了
请高手指点迷津
------解决方案--------------------errorpage iserrorpage
google下 很多
------解决方案-------------------- <error-page>
<error-code>404</error-code>
<location>/404.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/500.html</location>
</error-page>
<error-page>
<exception-type>
java.lang.NullPointerException</exception-type>
<location>/null.html</location>
</error-page>
404.html、500.html、null.html页面内容自己定义。
------解决方案--------------------最好的学习方法就是百度
------解决方案--------------------