In Spring Security, the AbstractSecurityInterceptor handles the initial authorization of incoming requests. AbstractSecurityInterceptor has two concrete implementations:
FilterSecurityInterceptor: It will authorize all authenticated user requests.
MethodSecurityInterceptor: This is crucial for implementing method-level security. It allows us to secure our program at the method level.