Cute Running Puppy
본문 바로가기
개발일기/Java

Spring Security 사용 시 Swagger 설정

by 징구짱 2023. 3. 15.
728x90

스프링부트 Swagger 사용법

 

스프링부트 Swagger 사용법

build.gradle dependencies에 추가 (수정 후 꼭 코끼리 누르기!) implementation 'io.springfox:springfox-boot-starter:3.0.0' application.properties에 추가 spring.mvc.pathmatch.matching-strategy=ant_path_matcher config 패키지 > SwaggerConfig

pingu514.tistory.com

 

저번에 설정한 Swagger api를 보려고 하는데 Spring Security에 걸려 보이지 않는 ㅜ3ㅜ

 

권한 설정을 해보기 위한 여러 가지의 시도....

 

 

http.authorizeRequests().antMatchers("/v3/api-docs", "/swagger*/**").permitAll().anyRequest().authenticated()

이렇게 추가하면!

드디어 ! 볼 수 있는 화면 흑흑

728x90