HttpEntityMethodProcessor(converters: MutableList<HttpMessageConverter<*>>)
Basic constructor with converters only. Suitable for resolving HttpEntity. For handling ResponseEntity consider also providing a ContentNegotiationManager.
HttpEntityMethodProcessor(converters: MutableList<HttpMessageConverter<*>>, manager: ContentNegotiationManager)
Basic constructor with converters and ContentNegotiationManager. Suitable for resolving HttpEntity and handling ResponseEntity without Request~ or ResponseBodyAdvice.
HttpEntityMethodProcessor(converters: MutableList<HttpMessageConverter<*>>, requestResponseBodyAdvice: MutableList<Any>)
Complete constructor for resolving HttpEntity method arguments. For handling ResponseEntity consider also providing a ContentNegotiationManager.
Since
4.2
HttpEntityMethodProcessor(converters: MutableList<HttpMessageConverter<*>>, @Nullable manager: ContentNegotiationManager, requestResponseBodyAdvice: MutableList<Any>)
Complete constructor for resolving HttpEntity and handling ResponseEntity.