[Chapter 04] Spring Boot 기본 WAS #25
Answered
by
corock
coalong
asked this question in
Chapter 04. Spring Web MVC Overview
-
Spring Boot 프레임워크에는 Tomcat, Jetty, Undertow 등 여러 임베디드 WAS 종류가 있다. 각각의 어떤 특징이 있을까? 그리고 Spring WebFlux 는 Netty 를 기본 WAS 로 사용하는 이유가 궁금하다! |
Beta Was this translation helpful? Give feedback.
Answered by
corock
Sep 7, 2023
Replies: 1 comment
-
Tomcat 과 Netty 의 가장 큰 차이점은 스레드를 단일로 사용하느냐 멀티로 운용하느냐인 것 같아요. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
coalong
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tomcat 과 Netty 의 가장 큰 차이점은 스레드를 단일로 사용하느냐 멀티로 운용하느냐인 것 같아요.
게다가 WebFlux 는 비동기 + Non-blocking 콜라보를 통해 적은 리소스로 많은 트래픽을 처리할 수 있도록 설계되었는데,
둘의 콜라보가 좋아? Default 로 설정한 게 아닌가 싶습니다.