59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
<%@ page import="java.io.*"%>
|
|
<%@ page language="java" contentType="text/html; charset=utf-8"%>
|
|
<%@ page import="com.eactive.eai.common.session.SessionManager"%>
|
|
<%@ page import="java.util.*"%>
|
|
<HTML>
|
|
<head>
|
|
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<style>
|
|
textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
resize: none;
|
|
}
|
|
body {
|
|
font-size: 9pt;
|
|
scrollbar-face-color: #DCDCDC;
|
|
scrollbar-shadow-color:#FFFFFF;
|
|
scrollbar-highlight-color:#FFFFFF;
|
|
scrollbar-3dlight-color: #BBBBBB;
|
|
scrollbar-darkshadow-color: #BBBBBB;
|
|
scrollbar-track-color: #EFEFEF;
|
|
scrollbar-arrow-color: #626262;
|
|
}
|
|
|
|
table {
|
|
font-family: µ¸¿ò;
|
|
font-size: 9pt;
|
|
line-height: 14px;
|
|
color: #555555;
|
|
}
|
|
</style>
|
|
<TITLE>SessionManager Cache Info</TITLE>
|
|
</head>
|
|
<body>
|
|
<p style="font-size:13pt;">
|
|
<b>[ SessionManager Cache Info ]</b>
|
|
</p>
|
|
<%
|
|
String statusLog = null;
|
|
try {
|
|
SessionManager sessionManager = SessionManager.getInstance();
|
|
statusLog = sessionManager.getCacheStatus();
|
|
}
|
|
catch(Exception ex) {
|
|
statusLog = ex.toString();
|
|
}
|
|
%>
|
|
<hr>
|
|
<p style="font-size:12pt;">
|
|
<b>SessionManager Cache Info</b>
|
|
</p>
|
|
<textarea style="border:none;width=200px;height=100px;">
|
|
<%= statusLog %>
|
|
</textarea>
|
|
|
|
</body>
|
|
</HTML>
|