日期:2014-05-17  浏览次数:20588 次

JSP的一个小问题。
 <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" %>

这里面指示,就能够指向对应的页面。

------解决方案--------------------
浏览器的问题吧