error.jsp 937 B

12345678910111213141516171819202122232425262728293031323334
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="/struts-tags" prefix="s" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <title>服务器内部错误</title>
  8. </head>
  9. <body>
  10. <div class="error">
  11. <h2>程序发生意外错误:</h2>
  12. <p>
  13. 请向系统管理员或者技术支持部门 报告此错误!感谢您的合作。
  14. </p>
  15. <% if (request.getRemoteAddr().equals(request.getLocalAddr())){%>
  16. <hr/>
  17. <h3>错误信息</h3>
  18. <s:actionerror/>
  19. <p>
  20. <s:property value="%{exception.message}"/>
  21. </p>
  22. <p>
  23. <s:property value="%{exception.toString()}"/>
  24. </p>
  25. <hr/>
  26. <h3>错误堆栈</h3>
  27. <p>
  28. <s:property value="%{exceptionStack}" escape="true"/>
  29. </p>
  30. <%} %>
  31. </div>
  32. </body>
  33. </html>