Skip to content

Instantly share code, notes, and snippets.

@bmchild
Created July 22, 2013 16:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmchild/6055353 to your computer and use it in GitHub Desktop.
Save bmchild/6055353 to your computer and use it in GitHub Desktop.
Check if a user is logged in
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
if (!(auth instanceof AnonymousAuthenticationToken)) {
// do something...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment