설정 의존성 추가 build.gradle에 아래 의존성들을 추가 // support swagger doc compile ('io.springfox:springfox-swagger2:2.9.2') Application 설정 추가 application.yml 파일에 설정 추가 springdoc: swagger-ui: path: /test/api-docs.html # swagger ui html 파일 경로 설정, 컨트롤러에서 해당 경로를 호출하면 자동 생성된 swagger 페이지가 보인다. paths-to-match: /api/** # 매칭 기본 URL 설정 Bean 등록 기본설정 - 설정된 /api/** 이하의 모든 API의 명세를 생성. @Configuration @EnableSwagger2 public ..