Skip to content

Instantly share code, notes, and snippets.

@lusabo
Last active May 1, 2018 21:03
Show Gist options
  • Save lusabo/0447875490e2e4744657ffe355466044 to your computer and use it in GitHub Desktop.
Save lusabo/0447875490e2e4744657ffe355466044 to your computer and use it in GitHub Desktop.
JwtAuthenticationEntryPoint
package com.eco.security;
// Imports
@Component
public class JwtAuthenticationEntryPoint implements AuthenticationEntryPoint {
@Override
public void commence(HttpServletRequest request, HttpServletResponse response,
AuthenticationException authException) throws IOException {
response.sendError(HttpServletResponse.SC_UNAUTHORIZED, "Acesso negado.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment