본문 바로가기

TIP&TECH

jsp 세션내용 출력하기.


jsp 페이지에서 session 내용을 key 값과 함께 확인하고 싶을 때 다음과 같이 사용.

구글링 해서 나왔는데 정상 동작함을 확인 했음.


















<%
  HttpSession loginSession = request.getSession(true);
  String key;
  Object value;

  for (Enumeration e = loginSession.getAttributeNames() ; e.hasMoreElements() ;) {
    key = (String) e.nextElement();
    value = loginSession.getAttribute(key);
    out.println(key+" : "+ value+"<br>");
  }
%>

<% HttpSession loginSession = request.getSession(true); String key; Object value; for (Enumeration e = loginSession.getAttributeNames() ; e.hasMoreElements() ;) { key = (String) e.nextElement(); value = loginSession.getAttribute(key); out.println(key+" : "+ value+"
"); } %>