Skip to content

Instantly share code, notes, and snippets.

@pratikpc
Created May 28, 2020 05:58
Show Gist options
  • Save pratikpc/3363a06a608bf95edbf1c022b01e4b71 to your computer and use it in GitHub Desktop.
Save pratikpc/3363a06a608bf95edbf1c022b01e4b71 to your computer and use it in GitHub Desktop.
@GET
@Produces(MediaType.TEXT_PLAIN)
@PermitAll
public String hello(@Context SecurityContext securityContext) {
final var user = (DefaultJWTCallerPrincipal) securityContext.getUserPrincipal();
if (user == null){
return "Hello Anonymous User";
}
final var email = user.getClaim("email");
return "hello " + email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment