2v0-7222 Exam QuestionsBrowse all questions from this exam

2v0-7222 Exam - Question 5


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

Show Answer
Correct Answer: AC

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

4 comments
Sign in to comment
trungviettriOptions: AC
Jan 11, 2023

A,C correct

zakupowerOptions: AC
Mar 3, 2023

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
Aug 15, 2023

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

james2033Options: AC
Feb 15, 2024

A and C.

Tolo01Options: AC
Jul 31, 2023

A and C are the best answer