Answers for "how to secure specific url in spring security"

0

how to secure specific url in spring security

http.authorizeRequests()
.antMatchers("/swagger*/**").authenticated()
.anyRequest().permitAll()
.and()
.csrf().disable();
Posted by: Guest on July-08-2020

Code answers related to "how to secure specific url in spring security"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language