use reactor cookie support

This commit is contained in:
Stephane Maldini
2016-01-14 03:34:25 +00:00
parent da90f03f4c
commit 0f432f735a
3 changed files with 67 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ import org.springframework.http.RequestEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.http.server.reactive.boot.HttpServer;
import org.springframework.http.server.reactive.boot.JettyHttpServer;
import org.springframework.http.server.reactive.boot.ReactorHttpServer;
import org.springframework.http.server.reactive.boot.RxNettyHttpServer;
import org.springframework.http.server.reactive.boot.TomcatHttpServer;
import org.springframework.http.server.reactive.boot.UndertowHttpServer;
@@ -66,7 +67,7 @@ public class CookieIntegrationTests {
return new Object[][] {
{new JettyHttpServer()},
{new RxNettyHttpServer()},
// {new ReactorHttpServer()},
{new ReactorHttpServer()},
{new TomcatHttpServer()},
{new UndertowHttpServer()}
};