관리 메뉴

Just Do it

[스프링] 콘솔창에 모든 세션값 가져오는 방법 본문

신입 개발자가 되기 위해 공부했던 독학 자료들/자꾸 까먹는 기본 개념 모음

[스프링] 콘솔창에 모든 세션값 가져오는 방법

Seojoo21 2022. 3. 17. 20:25
Enumeration<String> attributes = request.getSession().getAttributeNames();
while (attributes.hasMoreElements()) {
    String attribute = (String) attributes.nextElement();
    System.err.println(attribute+" : "+request.getSession().getAttribute(attribute));
}

 

실제 사용 예시)

 

STS 콘솔 창에 뜬 Session 값들)