| <!DOCTYPE HTML> | 
| <html xmlns:th="http://www.thymeleaf.org" xmlns:matrix="http://www.w3.org/1999/xhtml"> | 
| <head> | 
|     <meta charset="utf-8"> | 
|     <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> | 
|     <meta name="renderer" content="webkit|ie-comp|ie-stand"> | 
|     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 
|     <meta name="viewport" | 
|           content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/> | 
|     <meta http-equiv="Cache-Control" content="no-siteapp"/> | 
|     <LINK rel="Bookmark" href="../images/favicon.ico"> | 
|     <!-- 本框架基本脚本和样式 --> | 
|   | 
|     <link rel="stylesheet" th:href="@{/plugin/bootstrap-3.3.5/css/bootstrap.min.css}"> | 
|     <link th:href="@{/css/styleOne/style.min.css}" rel="stylesheet" type="text/css"/> | 
| </head> | 
| <body> | 
| <div class="ibox-content" id="app"> | 
|     <table class="table table-striped table-bordered" style="width: 800px;"> | 
|         <tr> | 
|             <td>ID</td> | 
|             <td th:text="${obj.id}" ></td> | 
|             <td  >姓名</td> | 
|             <td th:text="${obj.owner}" ></td> | 
|         </tr> | 
|         <tr> | 
|             <td  >异常类型</td> | 
|             <td th:text="${obj.simpleMsg}" ></td> | 
|             <td  >发生时间</td> | 
|             <td th:text="${#dates.format(obj.createTime, 'yyyy-MM-dd HH:mm:sss')}" > | 
|         </tr> | 
|         <tr> | 
|             <td  >访问地址</td> | 
|             <td th:text="${obj.cause}" ></td> | 
|             <td  >mdc</td> | 
|             <td th:text="${obj.mdc}" ></td> | 
|         </tr> | 
|     </table> | 
|     <pre  th:text="${obj.errorMsg}" ></pre> | 
|   | 
| </div> | 
| <script type="text/javascript" th:src="@{/js/plugin/jquery-2.1.4.min.js}"></script> | 
| <script type="text/javascript" th:src="@{/js/plugin/jquery.query.js}"></script> | 
| <script type="text/javascript" th:src="@{/plugin/bootstrap-3.3.5/js/bootstrap.min.js}"></script> | 
|   | 
| <script type="text/javascript"> | 
|   | 
|   | 
| </script> | 
| </body> | 
| </html> |