1.

Explain AbstractSecurityInterceptor in spring security?

Answer»

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.


Discussion

No Comment Found