Class AllEncompassingFormHttpMessageConverter
java.lang.Object
org.springframework.http.converter.FormHttpMessageConverter
org.springframework.http.converter.support.AllEncompassingFormHttpMessageConverter
- All Implemented Interfaces:
HttpMessageConverter<MultiValueMap<String,?>>
Extension of
FormHttpMessageConverter,
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
-
Field Summary
Fields inherited from class org.springframework.http.converter.FormHttpMessageConverter
DEFAULT_CHARSET -
Constructor Summary
ConstructorsConstructorDescriptionCreate a newAllEncompassingFormHttpMessageConverterinstance that will auto-detect part converters.AllEncompassingFormHttpMessageConverter(Iterable<HttpMessageConverter<?>> converters) Create a newAllEncompassingFormHttpMessageConverterinstance using the given message converters. -
Method Summary
Methods inherited from class org.springframework.http.converter.FormHttpMessageConverter
addPartConverter, addSupportedMediaTypes, canRead, canWrite, generateMultipartBoundary, getFilename, getFormContentType, getHttpEntity, getPartConverters, getSupportedMediaTypes, read, serializeForm, setCharset, setMultipartCharset, setPartConverters, setSupportedMediaTypes, writeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.http.converter.HttpMessageConverter
getSupportedMediaTypes
-
Constructor Details
-
AllEncompassingFormHttpMessageConverter
public AllEncompassingFormHttpMessageConverter()Create a newAllEncompassingFormHttpMessageConverterinstance that will auto-detect part converters. -
AllEncompassingFormHttpMessageConverter
Create a newAllEncompassingFormHttpMessageConverterinstance using the given message converters.- Parameters:
converters- the message converters to use for part conversion- Since:
- 7.0
-