Class AllEncompassingFormHttpMessageConverter
java.lang.Object
org.springframework.http.converter.multipart.MultipartHttpMessageConverter
org.springframework.http.converter.support.AllEncompassingFormHttpMessageConverter
- All Implemented Interfaces:
HttpMessageConverter<MultiValueMap<String,?>>, SmartHttpMessageConverter<MultiValueMap<String, ?>>
@Deprecated(since="7.1",
forRemoval=true)
public class AllEncompassingFormHttpMessageConverter
extends MultipartHttpMessageConverter
Deprecated, for removal: This API element is subject to removal in a future version.
Extension of
MultipartHttpMessageConverter,
adding support for XML, JSON, Smile, CBOR, Protobuf and Yaml based parts when
related libraries are present in the classpath.- Since:
- 3.2
- Author:
- Rossen Stoyanchev, Juergen Hoeller, Sebastien Deleuze
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Create a newAllEncompassingFormHttpMessageConverterinstance that will auto-detect part converters.AllEncompassingFormHttpMessageConverter(Iterable<HttpMessageConverter<?>> converters) Deprecated, for removal: This API element is subject to removal in a future version.Create a newAllEncompassingFormHttpMessageConverterinstance using the given message converters. -
Method Summary
Methods inherited from class MultipartHttpMessageConverter
addSupportedMediaTypes, canRead, canWrite, getFilename, getHttpEntity, getPartConverters, getSupportedMediaTypes, read, setCharset, setMaxDiskUsagePerPart, setMaxHeadersSize, setMaxInMemorySize, setMaxParts, setMultipartCharset, setSupportedMediaTypes, writeMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface HttpMessageConverter
canWriteRepeatedly, getSupportedMediaTypesMethods inherited from interface SmartHttpMessageConverter
canRead, canWrite, read, write
-
Constructor Details
-
AllEncompassingFormHttpMessageConverter
public AllEncompassingFormHttpMessageConverter()Deprecated, for removal: This API element is subject to removal in a future version.Create a newAllEncompassingFormHttpMessageConverterinstance that will auto-detect part converters. -
AllEncompassingFormHttpMessageConverter
Deprecated, for removal: This API element is subject to removal in a future version.Create a newAllEncompassingFormHttpMessageConverterinstance using the given message converters.- Parameters:
converters- the message converters to use for part conversion- Since:
- 7.0
-
MultipartHttpMessageConverter.