Cezary Hadrzyński

Results 5 comments of Cezary Hadrzyński

It looks great. Default disambiguity strategy can be added to global configuration properties too.

Actual behaviou can be specified as `DisambiguityStrategy.ERROR` or something like that.

I'm not sure, but I think resolved disambiguity should be logged as info or warning.

I can't configure it easly from configurer level in this place: ``` @Bean public SecurityFilterChain security(HttpSecurity http) throws Exception { return http .cors(withDefaults()) .authorizeHttpRequests(config -> { config .requestMatchers("/v3/api-docs/**", "/swagger-ui/**").permitAll() .anyRequest().authenticated();...