From 95925457581b681c372a2a71864157fd1537e3f3 Mon Sep 17 00:00:00 2001 From: Thiago Date: Thu, 29 Dec 2022 16:30:23 +0000 Subject: [PATCH 1/2] Update with Reactor Netty --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e23828..514bb39 100644 --- a/README.md +++ b/README.md @@ -1313,11 +1313,12 @@ It helps to access the current state of an application that is running in a prod ## Q. ***Which Embedded Containers are Supported by Spring Boot?*** -Spring Boot contains Jetty, Tomcat, and Undertow servers, all of which are embedded. +Spring Boot contains Jetty, Tomcat, Undertow or Reactor Netty servers, all of which are embedded. * **Jetty** – Used in a wide number of projects, Eclipse Jetty can be embedded in framework, application servers, tools, and * clusters. * **Tomcat** – Apache Tomcat is an open source JavaServer Pages implementation which works well with embedded systems. * **Undertow** – A flexible and prominent web server that uses small single handlers to develop a web server. +* **Reactor Netty** - Reactor Netty offers non-blocking and backpressure-ready TCP/HTTP/UDP/QUIC clients & servers based on Netty framework.
↥ back to top From aab3c737cf0afd6a3c9dee04140ec0d289eee028 Mon Sep 17 00:00:00 2001 From: Thiago Date: Thu, 29 Dec 2022 16:32:41 +0000 Subject: [PATCH 2/2] Changing "or" to "and" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 514bb39..a0b6fcb 100644 --- a/README.md +++ b/README.md @@ -1313,7 +1313,7 @@ It helps to access the current state of an application that is running in a prod ## Q. ***Which Embedded Containers are Supported by Spring Boot?*** -Spring Boot contains Jetty, Tomcat, Undertow or Reactor Netty servers, all of which are embedded. +Spring Boot contains Jetty, Tomcat, Undertow and Reactor Netty servers, all of which are embedded. * **Jetty** – Used in a wide number of projects, Eclipse Jetty can be embedded in framework, application servers, tools, and * clusters. * **Tomcat** – Apache Tomcat is an open source JavaServer Pages implementation which works well with embedded systems.