Thank you for sharing. Do we need to set up an @Order when using different configurations by profile? For example, I have a configuration class in which I'd like just to change .antMatchers("/**").fullyAuthenticated() to .antMatchers("/**").permitAll() for local settings in the overridden configure(HttpSecurity http) method.
Thank you for sharing. Do we need to set up an @Order when using different configurations by profile? For example, I have a configuration class in which I'd like just to change
.antMatchers("/**").fullyAuthenticated()to.antMatchers("/**").permitAll()for local settings in the overriddenconfigure(HttpSecurity http)method.No need to use @Order as long as all security adapters have a specific profile set on them.