Skip to content

Instantly share code, notes, and snippets.

@usirin
Created January 22, 2014 15:51
Show Gist options
  • Select an option

  • Save usirin/8561182 to your computer and use it in GitHub Desktop.

Select an option

Save usirin/8561182 to your computer and use it in GitHub Desktop.
Show all session variables on JSP pages
Enumeration keys = session.getAttributeNames();
while (keys.hasMoreElements())
{
String key = (String)keys.nextElement();
out.println(key + ": " + session.getValue(key) + "<br>");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment