Comment sécuriser l'URL spécifique dans la sécurité du printemps

http.authorizeRequests()
.antMatchers("/swagger*/**").authenticated()
.anyRequest().permitAll()
.and()
.csrf().disable();
Determined Dunlin