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

Which two statements are true regarding Spring Security? (Choose two.)

    Correct Answer: A, C

    Spring Security allows configuring access control at the method level, enabling fine-grained security management through annotations and configuration. Additionally, Spring Security supports various mechanisms for accessing authentication data, such as databases, LDAP, and more, providing flexibility in how authentication information is retrieved and managed.

Discussion
trungviettriOptions: AC

A,C correct

james2033Options: AC

A and C.

zakupowerOptions: AC

permitAll() does not bypass security entirely, it just allows access to the specified matcher, but other security related filters still run. e.g. cors, cqrs ...

Azuni

Correct. The only way to bypass Spring Security completely is to use a WebSecurityCustomizer with the .ignore() method.

Tolo01Options: AC

A and C are the best answer