Uses of Class
org.springframework.http.converter.HttpMessageNotReadableException
Packages that use HttpMessageNotReadableException
Package
Description
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
Provides HttpMessageConverter implementations for handling Atom and RSS feeds.
Provides HttpMessageConverter implementations for handling JSON.
Provides an HttpMessageConverter implementation for handling
Google Protocol Buffers.
Provides HttpMessageConverter implementations for handling XML.
Test support for HTTP concepts.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.Support package for MVC controllers.
-
Uses of HttpMessageNotReadableException in org.springframework.http.converter
Methods in org.springframework.http.converter that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionfinal T
AbstractHttpMessageConverter.read
(Class<? extends T> clazz, HttpInputMessage inputMessage) This implementation simple delegates toAbstractHttpMessageConverter.readInternal(Class, HttpInputMessage)
.final Object
AbstractKotlinSerializationHttpMessageConverter.read
(ResolvableType type, HttpInputMessage inputMessage, Map<String, Object> hints) BufferedImageHttpMessageConverter.read
(Class<? extends BufferedImage> clazz, HttpInputMessage inputMessage) FormHttpMessageConverter.read
(Class<? extends MultiValueMap<String, ?>> clazz, HttpInputMessage inputMessage) GenericHttpMessageConverter.read
(Type type, Class<?> contextClass, HttpInputMessage inputMessage) Read an object of the given type from the given input message, and returns it.HttpMessageConverter.read
(Class<? extends T> clazz, HttpInputMessage inputMessage) Read an object of the given type from the given input message, and returns it.ResourceRegionHttpMessageConverter.read
(Type type, Class<?> contextClass, HttpInputMessage inputMessage) default T
SmartHttpMessageConverter.read
(Class<? extends T> clazz, HttpInputMessage inputMessage) SmartHttpMessageConverter.read
(ResolvableType type, HttpInputMessage inputMessage, Map<String, Object> hints) Read an object of the given type from the given input message, and returns it.protected abstract T
AbstractHttpMessageConverter.readInternal
(Class<? extends T> clazz, HttpInputMessage inputMessage) Abstract template method that reads the actual object.protected abstract Object
AbstractKotlinSerializationHttpMessageConverter.readInternal
(kotlinx.serialization.KSerializer<Object> serializer, T format, HttpInputMessage inputMessage) Reads the given input message with the given serializer and format.protected T
AbstractSmartHttpMessageConverter.readInternal
(Class<? extends T> clazz, HttpInputMessage inputMessage) protected Object
KotlinSerializationBinaryHttpMessageConverter.readInternal
(kotlinx.serialization.KSerializer<Object> serializer, T format, HttpInputMessage inputMessage) protected Object
KotlinSerializationStringHttpMessageConverter.readInternal
(kotlinx.serialization.KSerializer<Object> serializer, T format, HttpInputMessage inputMessage) protected Object
ObjectToStringHttpMessageConverter.readInternal
(Class<?> clazz, HttpInputMessage inputMessage) protected Resource
ResourceHttpMessageConverter.readInternal
(Class<? extends Resource> clazz, HttpInputMessage inputMessage) protected ResourceRegion
ResourceRegionHttpMessageConverter.readInternal
(Class<?> clazz, HttpInputMessage inputMessage) -
Uses of HttpMessageNotReadableException in org.springframework.http.converter.feed
Methods in org.springframework.http.converter.feed that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionprotected T
AbstractWireFeedHttpMessageConverter.readInternal
(Class<? extends T> clazz, HttpInputMessage inputMessage) -
Uses of HttpMessageNotReadableException in org.springframework.http.converter.json
Methods in org.springframework.http.converter.json that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionAbstractJackson2HttpMessageConverter.read
(Type type, Class<?> contextClass, HttpInputMessage inputMessage) final Object
AbstractJsonHttpMessageConverter.read
(Type type, Class<?> contextClass, HttpInputMessage inputMessage) protected Object
AbstractJackson2HttpMessageConverter.readInternal
(Class<?> clazz, HttpInputMessage inputMessage) protected final Object
AbstractJsonHttpMessageConverter.readInternal
(Class<?> clazz, HttpInputMessage inputMessage) -
Uses of HttpMessageNotReadableException in org.springframework.http.converter.protobuf
Methods in org.springframework.http.converter.protobuf that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionprotected com.google.protobuf.Message
ProtobufHttpMessageConverter.readInternal
(Class<? extends com.google.protobuf.Message> clazz, HttpInputMessage inputMessage) -
Uses of HttpMessageNotReadableException in org.springframework.http.converter.xml
Methods in org.springframework.http.converter.xml that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionJaxb2CollectionHttpMessageConverter.read
(Type type, Class<?> contextClass, HttpInputMessage inputMessage) final T
AbstractXmlHttpMessageConverter.readInternal
(Class<? extends T> clazz, HttpInputMessage inputMessage) protected T
SourceHttpMessageConverter.readInternal
(Class<? extends T> clazz, HttpInputMessage inputMessage) -
Uses of HttpMessageNotReadableException in org.springframework.test.http
Methods in org.springframework.test.http that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescription<T> T
HttpMessageContentConverter.convert
(HttpInputMessage message, MediaType mediaType, ResolvableType targetType) Convert the givenHttpInputMessage
whose content must match the givenMediaType
to the requestedtargetType
. -
Uses of HttpMessageNotReadableException in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionprotected ResponseEntity<Object>
ResponseEntityExceptionHandler.handleHttpMessageNotReadable
(HttpMessageNotReadableException ex, HttpHeaders headers, HttpStatusCode status, WebRequest request) Customize the handling ofHttpMessageNotReadableException
.Methods in org.springframework.web.servlet.mvc.method.annotation that throw HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionprotected <T> Object
AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters
(HttpInputMessage inputMessage, MethodParameter parameter, Type targetType) Create the method argument value of the expected parameter type by reading from the given HttpInputMessage.protected <T> Object
AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters
(NativeWebRequest webRequest, MethodParameter parameter, Type paramType) Create the method argument value of the expected parameter type by reading from the given request.protected <T> Object
RequestResponseBodyMethodProcessor.readWithMessageConverters
(NativeWebRequest webRequest, MethodParameter parameter, Type paramType) -
Uses of HttpMessageNotReadableException in org.springframework.web.servlet.mvc.support
Methods in org.springframework.web.servlet.mvc.support with parameters of type HttpMessageNotReadableExceptionModifier and TypeMethodDescriptionprotected ModelAndView
DefaultHandlerExceptionResolver.handleHttpMessageNotReadable
(HttpMessageNotReadableException ex, HttpServletRequest request, HttpServletResponse response, Object handler) Handle the case where a message converter cannot read from an HTTP request.