use of reactor.netty.TomcatServer in project reactor-netty by reactor.
the class HttpClientWithTomcatTest method startTomcat.
@BeforeAll
static void startTomcat() throws Exception {
tomcat = new TomcatServer();
tomcat.createDefaultContext();
tomcat.start();
}
Aggregations