spring-boot-starter-web 에서 기본적으로 추가되는 tomcat 이 아닌 jetty, netty, undertow 등으로 의존성 변경

TenaLee·2021년 2월 19일
0

spring-boot-starter-web 의존성을 추가하면
스프링 부트 웹 프로젝트는 추이적으로 내장 웹 서버(Embedded Web Server) 의존성도 같이 딸려오는데, 기본적으로 spring-boot-starter-tomcat 의존성이 추가된다.

만약 이 기본적으로 딸려오는 tomcat을 사용하지 않고,
jetty, netty, undertow 등 다른 내장 서블릿 컨테이너들을 사용하기 위한다면
다음을 참고

https://docs.spring.io/spring-boot/docs/current/reference/html/howto.html#howto-use-another-web-server

profile
Tenacity

0개의 댓글