티스토리 뷰
Swagger(스웨거)는 API에 대한 메뉴얼 자동 생성 및 테스트 기능을 제공합니다.
먼저 스웨거2 구현을 위한 Springfox사용을 위해 pom.xml에 dependency를 추가 합니다.
스웨거 UI는 스웨거가 생성하는 API문서를 사용자 대화 방식으로 만들어 주는 내장 솔루션입니다.
<!--Swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.2.2</version>
</dependency>
<!--Swagger UI-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.2.2</version>
</dependency>
스웨거2는 @EnableSwagger2 어노테이션 설정으로 사용 가능합니다.
@Configuration
@EnableSwagger2 // 스웨거 설정 가능케함
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.useDefaultResponseMessages(false)
.globalResponseMessage(RequestMethod.GET,
newArrayList(new ResponseMessageBuilder()
.code(500)
.message("500 message")
.responseModel(new ModelRef("Error"))
.build(),
new ResponseMessageBuilder()
.code(403)
.message("Forbidden!")
.build()));
}
private ApiInfo apiInfo() {
ApiInfo apiInfo = new ApiInfo(
"API Title ",
"API description.",
"API 1.0",
"Terms of service",
"annajinee@gmail.com",
"License of API",
"API license URL");
return apiInfo;
}
}
전체 소스는 아래의 깃에서 확인 가능합니다.
https://github.com/annajinee/springboot-swagger-api
참고 사이트 : http://www.baeldung.com/swagger-2-documentation-for-spring-rest-api
http://springboot.tistory.com/26
'Framework > SpringBoot' 카테고리의 다른 글
[Spring Boot] Ajp 에러- Invalid message received with signature (1) | 2019.04.09 |
---|---|
[Spring Boot] Spring Boot 2.x Tomcat https-http 동시 사용 (Tomcat Ajp설정) (0) | 2019.04.09 |
[Spring Boot] SpringBoot 2.x의 HikariCp 에러 정리 (0) | 2019.01.17 |
[SpringBoot] Http를 Https로 전환/ 리다이렉트 시키기 (Redirecting HTTP to HTTPS in Spring Boot) (1) | 2017.07.24 |
[SpringBoot] Spring과 Spring Boot의 차이 (0) | 2017.07.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- spring boot
- JPA 영속성관리
- HTTPS
- spring boot 2.1
- 의존성 사이클
- Spring
- springboot
- 엔진엑스
- AJP
- plugin
- exception종류
- nginx
- entity type
- HTTP
- angular2
- spring boot http
- SSL
- spring jpa
- 플러그인
- entityfactory
- tomcat Ajp
- 프록시 설정
- jpa 값타입
- https 동시사용
- JPA 엔티티
- 자바 가상머신
- spring boot 포트
- JPA란
- entitymanager
- JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함