sysWsLogGet.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <%--
  2. time:2013-05-30 14:53:45
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>cxf调用日志明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">cxf调用日志详细信息</span>
  19. </div>
  20. <div class="panel-toolbar">
  21. <div class="toolBar">
  22. <div class="group">
  23. <a class="link back" href="list.ht"><span></span>返回</a>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  29. <tr>
  30. <th width="20%">创建时间:</th>
  31. <td><fmt:formatDate value="${sysWsLog.createtime}" pattern="yyyy-MM-dd hh:mm:ss" /></td>
  32. </tr>
  33. <tr>
  34. <th width="20%">访问来源:</th>
  35. <td>${sysWsLog.sourceMsg}</td>
  36. </tr>
  37. <tr>
  38. <th width="20%">访问路径:</th>
  39. <td>${sysWsLog.clsName}</td>
  40. </tr>
  41. <tr>
  42. <th width="20%">传入参数:</th>
  43. <td>${sysWsLog.impDesc}</td>
  44. </tr>
  45. <tr>
  46. <th width="20%">返回值:</th>
  47. <td>${sysWsLog.expDesc}</td>
  48. </tr>
  49. <tr>
  50. <th width="20%">方法名称:</th>
  51. <td>${sysWsLog.callName}</td>
  52. </tr>
  53. <tr>
  54. <th width="20%">方法描述:</th>
  55. <td>${sysWsLog.callDesc}</td>
  56. </tr>
  57. <tr>
  58. <th width="20%">是否成功:</th>
  59. <td>
  60. <c:if test="${sysWsLog.isSuccess==1}">成功</c:if>
  61. <c:if test="${sysWsLog.isSuccess==0}">失败</c:if>
  62. </td>
  63. </tr>
  64. <tr>
  65. <th width="20%">错误详细描述:</th>
  66. <td>${sysWsLog.errDetail}</td>
  67. </tr>
  68. </table>
  69. </div>
  70. </div>
  71. </body>
  72. </html>