티스토리 뷰
Spring/Spring Boot(스프링 부트)
Spring Boot Web의 Tomcat을 Jetty로 대체, Swagger연동
KyeongRok Kim 2021. 11. 25. 15:32Tomcat 실행이 체감상 느려서 Jetty로 바꾸어보았습니다. 그랬더니 조금 빨라졌습니다.
Jetty로 대체
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
implementation "org.springframework.boot:spring-boot-starter-jetty"
}
잘 적용 되었다면 아래와 같이 나옵니다.
Maven
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
Swagger연동
버젼은 swagger2 2.9.2를 사용 했습니다.
build.gradle
dependencies {
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
}
application.yml
이 설정은 SpringBoot 2.6 이상에서 Dependency에러가 나는 경우 추가 해주시기 바랍니다.
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
config/Swagger2Configuration.java
@Configuration
@EnableSwagger2
public class Swagger2Configuration{
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.useDefaultResponseMessages(false)
.select()
.apis(RequestHandlerSelectors.basePackage("com.kafka.kafkapubsubjava"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo());
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Practice Swagger")
.description("practice swagger config")
.version("1.0")
.build();
}
}
728x90
'Spring > Spring Boot(스프링 부트)' 카테고리의 다른 글
Spring Boot Rest API 만들기 (0) | 2022.03.29 |
---|---|
Certificate Signing Requests(CSR) (0) | 2022.03.27 |
스프링 부트 @RequiredArgsConstructor 애노테이션 (1) | 2019.03.13 |
jpa app 운영 배포 전략 (0) | 2019.03.13 |
WebFlux test get, get with param, post, post with param (0) | 2019.01.18 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 이직
- docker container case
- 도커각티슈박스
- docker container tissue
- 2017 티스토리 결산
- 개발자
- docker container tissue box
- 도커컨테이너
- Sh
- 도커티슈케이스
- vim
- shellscript
- 도커티슈박스
- docker container whale
- 도커각티슈케이스
- 싱가폴
- Linux
- docker container
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함