Swagger 설정 의존성 추가 build.gradle에 아래 의존성들을 추가 // support swagger doc compile ('io.springfox:springfox-swagger2:2.9.2') Swagger 설정 Bean 등록 기본설정 - 설정된 /api/** 이하의 모든 API의 명세를 뽑아줍니다. @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.any()) // 현재 RequestMapping으로 할당된 모든 URL 리스트를..