Consigo acessar o endereço /v3/api-docs/
mas não estou conseguindo acessar o /swagger-ui.html.
Aparece essa mensagem no navegador: O acesso a localhost foi negadoVocê não tem autorização para ver esta página. HTTP ERROR 403
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
return http.csrf().disable()
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS)
.and().authorizeHttpRequests()
.requestMatchers(HttpMethod.POST, "/login").permitAll()
.requestMatchers("/v3/api-docs/**", "/swagger-ui.html", "/swagger-ui**").permitAll()
.anyRequest().authenticated()
.and().addFilterBefore(securityFilter, UsernamePasswordAuthenticationFilter.class)
.build();
}