undertow support using non-blocking API’s

This commit is contained in:
Marek Hawrylczak
2015-11-07 15:52:47 +01:00
parent a48c9b6305
commit 4c84117155
8 changed files with 793 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ import org.springframework.reactive.web.http.reactor.ReactorHttpServer;
import org.springframework.reactive.web.http.rxnetty.RxNettyHttpServer;
import org.springframework.reactive.web.http.servlet.JettyHttpServer;
import org.springframework.reactive.web.http.servlet.TomcatHttpServer;
import org.springframework.reactive.web.http.undertow.UndertowHttpServer;
import org.springframework.util.SocketUtils;
@@ -43,7 +44,8 @@ public abstract class AbstractHttpHandlerIntegrationTests {
{new JettyHttpServer()},
{new RxNettyHttpServer()},
{new ReactorHttpServer()},
{new TomcatHttpServer()}
{new TomcatHttpServer()},
{new UndertowHttpServer()}
};
}