<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>pageContext,session,application,request</title> </head> <body> pageContext(한 화면)&lt;request(요청에서 응답 될때 까지)&lt; session(사용자가 브라우저를 닫을때 까지)&lt;application(서버가 꺼질때 까지) <br/> 변수를 맵 형때로 저장 할 수있다.(크기) <br/> if/for/switch 변수 &lt; method 변수 &lt; class 변수 (크기) <% String back = request.getParameter("background"); out.print("요청정보 중 background 파라미터 값: "+back+"<br/>"); //세션 단위로 저장된 값이 있나 확인해보자 out.print("세션 단에 backgroud키로 저장된 값 :" +session.getAttribute("background")+"<br/>"); //세션 단위:사용자가 브라우저를 닫을 때 까지 session.setAttribute("background",back); //세션 단위로 저장된 값이 있나 확인해보자 out.print("세션 단에 backgroud키로 저장된 값 :" +session.getAttribute("background")+"<br/>"); String background = (String)application.getAttribute("background"); out.print("background= "+background); %> <form action="day02_06.jsp"> <input type="radio" name="background" value="red">빨간색 <input type="radio" name="background" value="yellow">노란색 <input type="radio" name="background" value="black">검은색 <input type="submit" value="배경설정"> </form> </body> </html>



pageContext(한 화면) < request(요청에서 응답 될때 까지) <session(사용자가 브라우저를 닫을때 까지) < application(서버가 꺼질때 까지) (크기)        -    변수를 맵 형태로 저장 할 수있다.

if/for/switch 변수  <  method 변수  <  class 변수  (크기)


session으로 저장

(쉽게 말하자면 naver 로그인 하고 다른 페이지를 갔다 와도 로그인 정보가 꺼지지않고 explorer를 꺼야지만 로그인 정보가 날라간다~~강사왈~~)



+ Recent posts