12345678910111213141516171819202122232425262728293031323334 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib uri="/struts-tags" prefix="s" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>服务器内部错误</title>
- </head>
- <body>
- <div class="error">
- <h2>程序发生意外错误:</h2>
- <p>
- 请向系统管理员或者技术支持部门 报告此错误!感谢您的合作。
- </p>
- <% if (request.getRemoteAddr().equals(request.getLocalAddr())){%>
- <hr/>
- <h3>错误信息</h3>
- <s:actionerror/>
- <p>
- <s:property value="%{exception.message}"/>
- </p>
- <p>
- <s:property value="%{exception.toString()}"/>
- </p>
- <hr/>
- <h3>错误堆栈</h3>
- <p>
- <s:property value="%{exceptionStack}" escape="true"/>
- </p>
- <%} %>
- </div>
- </body>
- </html>
|