Skip to content

Instantly share code, notes, and snippets.

@jeffersonchaves
Created July 7, 2025 19:13
Show Gist options
  • Save jeffersonchaves/230214e9edb3402f54a1b423c95c6bd5 to your computer and use it in GitHub Desktop.
Save jeffersonchaves/230214e9edb3402f54a1b423c95c6bd5 to your computer and use it in GitHub Desktop.
@RestController
public class AuthenticationResource {
@Autowired
private AuthenticationService authenticationService;
@PostMapping("/authenticate")
public String authenticate(Authentication authentication){
return authenticationService.authenticate(authentication);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment