<error-page> <!--java.lang.ArithmeticException -->
   <exception-type>java.lang.ArithmeticException</exception-type>
   <location>/errors/mathErr.jsp</location>
  </error-page>
  
  <error-page>
   <error-code>404</error-code>
   <location>/errors/404.jsp</location>
  </error-page>
  
  <error-page>
   <error-code>500</error-code>
   <location>/error/500.jsp</location>
  </error-page>这些代码,无法让我程序指向对应的位置。但是

<%@page import="java.sql.Date" session="true" isThreadSafe="false" errorPage="/errors/404.jsp" %>这里面指示,就能够指向对应的页面。