Example usage for org.springframework.http.client.reactive ReactorClientHttpConnector ReactorClientHttpConnector

List of usage examples for org.springframework.http.client.reactive ReactorClientHttpConnector ReactorClientHttpConnector

Introduction

In this page you can find the example usage for org.springframework.http.client.reactive ReactorClientHttpConnector ReactorClientHttpConnector.

Prototype

public ReactorClientHttpConnector() 

Source Link

Document

Default constructor.

Usage

From source file:playground.itests.AbstractHttpHandlerIntegrationTests.java

@Before
public void setup() throws Exception {
    this.port = SocketUtils.findAvailableTcpPort();
    this.server = new TomcatHttpServer();
    this.server.setPort(this.port);
    this.server.setHandler(createHttpHandler());
    this.server.afterPropertiesSet();
    this.server.start();

    this.webClient = new WebClient(new ReactorClientHttpConnector());
}