Interface WebTestClient.RequestBodySpec
- All Superinterfaces:
WebTestClient.RequestHeadersSpec<WebTestClient.RequestBodySpec>
- All Known Subinterfaces:
WebTestClient.RequestBodyUriSpec
- Enclosing interface:
- WebTestClient
public static interface WebTestClient.RequestBodySpec extends WebTestClient.RequestHeadersSpec<WebTestClient.RequestBodySpec>
Specification for providing body of a request.
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description WebTestClient.RequestHeadersSpec<?>body(Object producer, Class<?> elementClass)Set the body from the given producer.WebTestClient.RequestHeadersSpec<?>body(Object producer, ParameterizedTypeReference<?> elementTypeRef)Set the body from the given producer.WebTestClient.RequestHeadersSpec<?>body(BodyInserter<?,? super ClientHttpRequest> inserter)Set the body of the request to the givenBodyInserter.<T,S extends org.reactivestreams.Publisher<T>>
WebTestClient.RequestHeadersSpec<?>body(S publisher, Class<T> elementClass)Set the body from the givenPublisher.<T,S extends org.reactivestreams.Publisher<T>>
WebTestClient.RequestHeadersSpec<?>body(S publisher, ParameterizedTypeReference<T> elementTypeRef)Variant ofbody(Publisher, Class)that allows providing element type information with generics.WebTestClient.RequestHeadersSpec<?>bodyValue(Object body)Set the body to the givenObjectvalue.WebTestClient.RequestBodySpeccontentLength(long contentLength)Set the length of the body in bytes, as specified by theContent-Lengthheader.WebTestClient.RequestBodySpeccontentType(MediaType contentType)Set the media type of the body, as specified by theContent-Typeheader.WebTestClient.RequestHeadersSpec<?>syncBody(Object body)Deprecated.as of Spring Framework 5.2 in favor ofbodyValue(Object)Methods inherited from interface org.springframework.test.web.reactive.server.WebTestClient.RequestHeadersSpec
accept, acceptCharset, attribute, attributes, cookie, cookies, exchange, header, headers, ifModifiedSince, ifNoneMatch
Method Detail
contentLength
WebTestClient.RequestBodySpec contentLength(long contentLength)
Set the length of the body in bytes, as specified by theContent-Lengthheader.- Parameters:
contentLength- the content length- Returns:
- the same instance
- See Also:
HttpHeaders.setContentLength(long)
contentType
WebTestClient.RequestBodySpec contentType(MediaType contentType)
Set the media type of the body, as specified by theContent-Typeheader.- Parameters:
contentType- the content type- Returns:
- the same instance
- See Also:
HttpHeaders.setContentType(MediaType)
bodyValue
WebTestClient.RequestHeadersSpec<?> bodyValue(Object body)
Set the body to the givenObjectvalue. This method invokes thebodyValuemethod on the underlyingWebClient.- Parameters:
body- the value to write to the request body- Returns:
- spec for further declaration of the request
- Since:
- 5.2
body
<T,S extends org.reactivestreams.Publisher<T>> WebTestClient.RequestHeadersSpec<?> body(S publisher, Class<T> elementClass)
- Type Parameters:
T- the type of the elements contained in the publisherS- the type of thePublisher- Parameters:
publisher- the request body dataelementClass- the class of elements contained in the publisher- Returns:
- spec for further declaration of the request
body
<T,S extends org.reactivestreams.Publisher<T>> WebTestClient.RequestHeadersSpec<?> body(S publisher, ParameterizedTypeReference<T> elementTypeRef)
Variant ofbody(Publisher, Class)that allows providing element type information with generics.- Type Parameters:
T- the type of the elements contained in the publisherS- the type of thePublisher- Parameters:
publisher- the request body dataelementTypeRef- the type reference of elements contained in the publisher- Returns:
- spec for further declaration of the request
- Since:
- 5.2
body
WebTestClient.RequestHeadersSpec<?> body(Object producer, Class<?> elementClass)
Set the body from the given producer. This method invokes thebody(Object, Class)method on the underlyingWebClient.- Parameters:
producer- the producer to write to the request. This must be aPublisheror another producer adaptable to aPublisherviaReactiveAdapterRegistryelementClass- the class of elements contained in the producer- Returns:
- spec for further declaration of the request
- Since:
- 5.2
body
WebTestClient.RequestHeadersSpec<?> body(Object producer, ParameterizedTypeReference<?> elementTypeRef)
Set the body from the given producer. This method invokes thebody(Object, ParameterizedTypeReference)method on the underlyingWebClient.- Parameters:
producer- the producer to write to the request. This must be aPublisheror another producer adaptable to aPublisherviaReactiveAdapterRegistryelementTypeRef- the type reference of elements contained in the producer- Returns:
- spec for further declaration of the request
- Since:
- 5.2
body
WebTestClient.RequestHeadersSpec<?> body(BodyInserter<?,? super ClientHttpRequest> inserter)
Set the body of the request to the givenBodyInserter. This method invokes thebody(BodyInserter)method on the underlyingWebClient.- Parameters:
inserter- the body inserter to use- Returns:
- spec for further declaration of the request
- See Also:
BodyInserters
syncBody
@Deprecated WebTestClient.RequestHeadersSpec<?> syncBody(Object body)
Deprecated.as of Spring Framework 5.2 in favor ofbodyValue(Object)Shortcut forbody(BodyInserter)with a value inserter. As of 5.2 this method delegates tobodyValue(Object).