Skip to content

Instantly share code, notes, and snippets.

@devotdev
Last active February 10, 2025 12:28
Show Gist options
  • Select an option

  • Save devotdev/40d41789c5a59661827e6fec171fd1f1 to your computer and use it in GitHub Desktop.

Select an option

Save devotdev/40d41789c5a59661827e6fec171fd1f1 to your computer and use it in GitHub Desktop.
Spring RBAC controller
@RestController
@RequestMapping("/api/v1/rbac")
public class RbacController {
@GetMapping("/doctor")
public String doctor() {
return "Doctor content";
}
@GetMapping("/patient")
public String patient() {
return "Patient content";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment