io.springfox springfox-swagger-ui 2.9.2 io.springfox springfox-swagger2 2.9.2 pom.xml 에 추가 Swagger는 설정이 필요 SwaggerConfig.java @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.any()) .paths(PathSelectors.ant("/**")) .build(); } } Swagger URL : http://localhost:8080/swagger..