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>
|
'Web > JSP/Servlet/JDBC' 카테고리의 다른 글
[JSP] 쿠키(Cookie) 사용방법 (0) | 2016.07.05 |
---|---|
[JDBC] jdbc예제/jdbc example (0) | 2016.06.22 |
[JSP] pageContext란/예제 (0) | 2016.06.22 |
response객체/response란?/response예제/HttpServletResponse (0) | 2016.06.22 |
request 객체/request란?/request예제 /HttpServletRequest (0) | 2016.06.22 |