Exam 2v0-7222 All QuestionsBrowse all questions from this exam
Question 15

In which three ways are Security filters used in Spring Security? (Choose three.)

    Correct Answer: B, D, E

    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.

Discussion
james2033Options: BDE

- 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.

saJAvaOptions: BDE

- A is incorrect. - F is incorrect.