jsessionid = 세션_아이디 포맷으로 전송
SessionData.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
session.setAttribute("name", "이종표");
session.setAttribute("age", new Integer(28));
session.setAttribute("gender", "남");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP</title>
</head>
<body>
세션이 저장되었습니다.<br><br>
<a href=<%=response.encodeURL("ReadSessionData.jsp") %>>세션 데이터 읽기</a>
</body>
</html>
ReadSessionData.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP</title>
</head>
<body>
이름 : <%=session.getAttribute("name") %><br>
나이 : <%=session.getAttribute("age") %><br>
성별 : <%=session.getAttribute("gender") %><br>
</body>
</html>
'JAVA > JSP & Servlet' 카테고리의 다른 글
서블릿(servlet)의 라이프 사이클 (getInitParameter, getContextPath) (2) | 2013.03.20 |
---|---|
JSP 예외처리(Exception) 방법 3가지 (0) | 2013.03.20 |
쿠키(cookie) & 세션(session) (1) | 2013.03.20 |
Servlet(서블릿) 생성 기본! [annotation] (0) | 2013.03.15 |
[펌]JSP 모델1과 모델 2의 비교 (0) | 2013.03.14 |