Skip to content

Instantly share code, notes, and snippets.

@jeffersonchaves
Created July 7, 2025 19:14
Show Gist options
  • Save jeffersonchaves/c116ddfcd5536318e25475015ffa2c3f to your computer and use it in GitHub Desktop.
Save jeffersonchaves/c116ddfcd5536318e25475015ffa2c3f to your computer and use it in GitHub Desktop.
@Service
public class AuthenticationService {
@Autowired
JwtService jwtService;
public String authenticate(Authentication authentication){
return jwtService.generateToken(authentication);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment