Class HttpHandlerConnector
java.lang.Object
org.springframework.test.web.reactive.server.HttpHandlerConnector
- All Implemented Interfaces:
org.springframework.http.client.reactive.ClientHttpConnector
public class HttpHandlerConnector
extends Object
implements org.springframework.http.client.reactive.ClientHttpConnector
Connector that handles requests by invoking an
HttpHandler rather
than making actual requests to a network socket.
Internally the connector uses and adapts
MockClientHttpRequest and MockClientHttpResponse to
MockServerHttpRequest and MockServerHttpResponse.
- Since:
- 5.0
- Author:
- Rossen Stoyanchev
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classIndicates that an error occurred after the server response was completed, viaReactiveHttpOutputMessage.writeWith(org.reactivestreams.Publisher<? extends org.springframework.core.io.buffer.DataBuffer>)orReactiveHttpOutputMessage.setComplete(), and can no longer be changed. -
Constructor Summary
ConstructorsConstructorDescriptionHttpHandlerConnector(org.springframework.http.server.reactive.HttpHandler handler) Constructor with theHttpHandlerto handle requests with. -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.client.reactive.ClientHttpResponse>connect(org.springframework.http.HttpMethod httpMethod, URI uri, Function<? super org.springframework.http.client.reactive.ClientHttpRequest, reactor.core.publisher.Mono<Void>> requestCallback)
-
Constructor Details
-
HttpHandlerConnector
public HttpHandlerConnector(org.springframework.http.server.reactive.HttpHandler handler) Constructor with theHttpHandlerto handle requests with.
-
-
Method Details
-
connect
public reactor.core.publisher.Mono<org.springframework.http.client.reactive.ClientHttpResponse> connect(org.springframework.http.HttpMethod httpMethod, URI uri, Function<? super org.springframework.http.client.reactive.ClientHttpRequest, reactor.core.publisher.Mono<Void>> requestCallback) - Specified by:
connectin interfaceorg.springframework.http.client.reactive.ClientHttpConnector
-