Skip to content

Instantly share code, notes, and snippets.

@baso53
Created November 13, 2021 22:16
Show Gist options
  • Save baso53/c3dff640e17c787b34b3e11b85d60b23 to your computer and use it in GitHub Desktop.
Save baso53/c3dff640e17c787b34b3e11b85d60b23 to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/app")
public class AppController {
@GetMapping(path = "/test")
@PreAuthorize("hasAuthority('READ')")
public String test(Principal principal) {
return principal.getName();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment