Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 940 Bytes

File metadata and controls

16 lines (11 loc) · 940 Bytes

Authorization

Spring Security provides comprehensive support for authorization. Authorization is determining who is allowed to access a particular resource. Spring Security provides defense in depth by allowing for request based authorization and method based authorization.

Request Based Authorization

Spring Security provides authorization based upon the request for both Servlet and WebFlux environments.

Method Based Authorization

Spring Security provides authorization based on the method invocation for both Servlet and WebFlux environments.