cara mengamankan url spesifik dalam keamanan musim semi

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