💡 예시
1. request.setAttribute();
String userid = "apple";
String userpw = "abcd1234";
String username = "김사과";
request.setAttribute("userid", userid);
request.setAttribute("userpw", userpw);
request.setAttribute("username", username);
pageContext.forward("attribute2.jsp");
//response.sendRedirect("attribute2.jsp");
2. session.setAttribute();
String userid = "apple";
String userpw = "abcd1234";
String username = "김사과";
session.setAttribute("userid",userid);
session.setAttribute("userpw",userpw);
session.setAttribute("username",username);
pageContext.forward("attribute2.jsp");
//response.sendRedirect("attribute2.jsp");
3. (String)request.getAttribute();
<%
String userid = (String)request.getAttribute("userid");
String userpw = (String)request.getAttribute("userpw");
String username = (String)request.getAttribute("username");
%>
아이디 : <%=userid %><br>
비밀번호 : <%=userpw %><br>
이름 : <%=username %><br>
4. (String)session.getAttribute();
<%
String userid = (String)session.getAttribute("userid");
String userpw = (String)session.getAttribute("userpw");
String username = (String)session.getAttribute("username");
%>
아이디 : <%=userid %><br>
비밀번호 : <%=userpw %><br>
이름 : <%=username %><br>
session.set/getAttribute();
[변수 명을 DB까지 동일시]