세션
<%@ page contentType="text/html; charset=EUC-KR" %>
<%@ page session = "true" %>
<%@ page import = "java.util.Date, java.text.SimpleDateFormat" %>
<html>
<head>
<title>생성된 세션 정보 출력하기</title>
</head>
<body>
<%
Date c_time = new Date(), m_time = new Date();
SimpleDateFormat formatter =
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
c_time.setTime(session.getCreationTime( ));
m_time.setTime(session.getLastAccessedTime( ));
%>
<H3>
세션 아이디 : <%= session.getId( ) %><br>
세션 생성 시각 : <%= formatter.format(c_time) %> <br>
세션 최종 접근 시각 : <%= formatter.format(m_time) %> <br>
</H3>
</body>
</html>