<error-page>
<exception-type> javax.servlet.ServletException</exception-type>
<location>/sysadmin/ClassNotFoundException.jsp</location>
</error-page>
<error-page>
<error-code>404</error-code>
<location>/sysadmin/error.jsp</location>
</error-page>
在你设置的出错的界面要加上<%@ page isErrorPage="true" %>,上面的ClassNotFoundException.jsp和error.jsp都要在页面上加上
以上页面都需要做大一点(>=2kB),否则不起作用。
原因:tomcat把这样的页面字节限制在不少于多少字节。