In which three ways are Security filters used in Spring Security? (Choose three.)
In which three ways are Security filters used in Spring Security? (Choose three.)
In Spring Security, filters are indeed used to drive authentication, provide a logout capability, and enforce authorization (access control). Authentication is a core function where the identity of users is verified. Logging out users securely is a critical feature in managing user sessions. Authorization ensures that users have the appropriate permissions to access resources, which is fundamental to maintaining security in an application.
- A is incorrect. - F is incorrect. - Spring security filter for authorization (What user can do what stuff), not authentication (Who are who?), therefore not for managing application users, causes C is incorrect.
- A is incorrect. - F is incorrect.