Spring Security - Lambda DSL
Overview of Lambda DSL
The release of Spring Security 5.2 includes enhancements to the DSL, which allow HTTP security to be configured using lambdas.
It is important to note that the prior configuration style is still valid and supported. The addition of lambdas is intended to provide more flexibility, but their usage is optional.
You may have seen this style of configuration in the Spring Security documentation or samples. Let us take a look at how a lambda configuration of HTTP security compares to the previous configuration style.
Configuration using lambdas
@EnableWebSecurity
public…