본문 바로가기
Web/JSP/Servlet/JDBC

[JSP] session객체/session예제

by 나비와꽃기린 2016. 6. 22.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

5.5 session 객체

-클라이언트와 서버와의 연결 유지에 사용

***실습21

sessionTest1.jsp

<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<%

session.setMaxInactiveInterval(10);

%>

<html>

<head>

<title>Session Test</title>

</head>

<body>

<h2>세션 테스트</h2>

isNew():<%=session.isNew()%><br>

생성시간:<%=session.getCreationTime()%><br>

최종 접속 시간:<%=session.getLastAccessedTime()%><br>

세션ID:<%=session.getId()%><br>

</body>

</html>

applicationTest1.jsp

<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<html>

<head>

<title>Application Test</title>

</head>

<body>

<h2>application 테스트</h2>

<table border="1">

        <tr>

                 <td>JSP 버전</td>

                 <td><%=application.getMajorVersion() %>.<%=application.getMinorVersion() %></td>

        </tr>

        <tr>

                 <td>컨테이너 정보</td>

                 <td><%=application.getServerInfo() %></td>

        </tr>

        <tr>

                 <td> 어플리케이션의 실제 파일시스템 경로</td>

                 <td><%=application.getRealPath("/") %></td>

        </tr>

</table>

</body>

</html>