Interface MockRestServiceServer.MockRestServiceServerBuilder
- Enclosing class:
- MockRestServiceServer
public static interface MockRestServiceServer.MockRestServiceServerBuilder
Builder to create a
MockRestServiceServer
.-
Method Summary
Modifier and TypeMethodDescriptionUse theBufferingClientHttpRequestFactory
wrapper to buffer the input and output streams, and for example, allow multiple reads of the response body.build()
Build theMockRestServiceServer
and set up the underlyingRestTemplate
with aClientHttpRequestFactory
that creates mock requests.build
(RequestExpectationManager manager) An overloaded build alternative that accepts a customRequestExpectationManager
.ignoreExpectOrder
(boolean ignoreExpectOrder) Whether to allow expected requests to be executed in any order not necessarily matching the order of declaration.
-
Method Details
-
ignoreExpectOrder
Whether to allow expected requests to be executed in any order not necessarily matching the order of declaration.Effectively a shortcut for:
builder.build(new UnorderedRequestExpectationManager)
.By default this is set to
false
- Parameters:
ignoreExpectOrder
- whether to ignore the order of expectations
-
bufferContent
MockRestServiceServer.MockRestServiceServerBuilder bufferContent()Use theBufferingClientHttpRequestFactory
wrapper to buffer the input and output streams, and for example, allow multiple reads of the response body.- Since:
- 5.0.5
-
build
MockRestServiceServer build()Build theMockRestServiceServer
and set up the underlyingRestTemplate
with aClientHttpRequestFactory
that creates mock requests. -
build
An overloaded build alternative that accepts a customRequestExpectationManager
.
-