类 AbstractJackson2HttpMessageConverter
- java.lang.Object
- org.springframework.http.converter.AbstractHttpMessageConverter<T>
- org.springframework.http.converter.AbstractGenericHttpMessageConverter<Object>
- org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter
- 所有已实现的接口:
GenericHttpMessageConverter<Object>,HttpMessageConverter<Object>
public abstract class AbstractJackson2HttpMessageConverter extends AbstractGenericHttpMessageConverter<Object>
Abstract base class for Jackson based and content type independentHttpMessageConverterimplementations.Compatible with Jackson 2.6 and higher, as of Spring 4.3.
- 从以下版本开始:
- 4.1
- 作者:
- Arjen Poutsma, Keith Donald, Rossen Stoyanchev, Juergen Hoeller, Sebastien Deleuze
- 另请参阅:
MappingJackson2HttpMessageConverter
字段概要
字段 修饰符和类型 字段 说明 static CharsetDEFAULT_CHARSETprotected ObjectMapperobjectMapper从类继承的字段 org.springframework.http.converter.AbstractHttpMessageConverter
logger
构造器概要
构造器 限定符 构造器 说明 protectedAbstractJackson2HttpMessageConverter(ObjectMapper objectMapper)protectedAbstractJackson2HttpMessageConverter(ObjectMapper objectMapper, MediaType supportedMediaType)protectedAbstractJackson2HttpMessageConverter(ObjectMapper objectMapper, MediaType... supportedMediaTypes)
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleancanRead(Class<?> clazz, MediaType mediaType)This implementation checks if the given class is supported, and if the supported media typesinclude the given media type.booleancanRead(Type type, Class<?> contextClass, MediaType mediaType)Indicates whether the given type can be read by this converter.booleancanWrite(Class<?> clazz, MediaType mediaType)protected LonggetContentLength(Object object, MediaType contentType)Returns the content length for the given type.protected MediaTypegetDefaultContentType(Object object)Returns the default content type for the given type.protected JavaTypegetJavaType(Type type, Class<?> contextClass)Return the JacksonJavaTypefor the specified type and context class.protected JsonEncodinggetJsonEncoding(MediaType contentType)Determine the JSON encoding to use for the given content type.ObjectMappergetObjectMapper()Return the underlyingObjectMapperfor this view.protected voidinit(ObjectMapper objectMapper)protected voidlogWarningIfNecessary(Type type, Throwable cause)Determine whether to log the given exception coming from aObjectMapper.canDeserialize(com.fasterxml.jackson.databind.JavaType)/ObjectMapper.canSerialize(java.lang.Class<?>)check.Objectread(Type type, Class<?> contextClass, HttpInputMessage inputMessage)Read an object of the given type form the given input message, and returns it.protected ObjectreadInternal(Class<?> clazz, HttpInputMessage inputMessage)Abstract template method that reads the actual object.voidsetObjectMapper(ObjectMapper objectMapper)Set theObjectMapperfor this view.voidsetPrettyPrint(boolean prettyPrint)Whether to use theDefaultPrettyPrinterwhen writing JSON.protected voidwriteInternal(Object object, Type type, HttpOutputMessage outputMessage)Abstract template method that writes the actual body.protected voidwritePrefix(JsonGenerator generator, Object object)Write a prefix before the main content.protected voidwriteSuffix(JsonGenerator generator, Object object)Write a suffix after the main content.从类继承的方法 org.springframework.http.converter.AbstractGenericHttpMessageConverter
canWrite, supports, write, writeInternal
从类继承的方法 org.springframework.http.converter.AbstractHttpMessageConverter
addDefaultHeaders, canRead, canWrite, getDefaultCharset, getSupportedMediaTypes, read, setDefaultCharset, setSupportedMediaTypes, write
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
从接口继承的方法 org.springframework.http.converter.HttpMessageConverter
getSupportedMediaTypes, read, write
字段详细资料
DEFAULT_CHARSET
public static final Charset DEFAULT_CHARSET
objectMapper
protected ObjectMapper objectMapper
构造器详细资料
AbstractJackson2HttpMessageConverter
protected AbstractJackson2HttpMessageConverter(ObjectMapper objectMapper)
AbstractJackson2HttpMessageConverter
protected AbstractJackson2HttpMessageConverter(ObjectMapper objectMapper, MediaType supportedMediaType)
AbstractJackson2HttpMessageConverter
protected AbstractJackson2HttpMessageConverter(ObjectMapper objectMapper, MediaType... supportedMediaTypes)
方法详细资料
init
protected void init(ObjectMapper objectMapper)
setObjectMapper
public void setObjectMapper(ObjectMapper objectMapper)
Set theObjectMapperfor this view. If not set, a defaultObjectMapperis used.Setting a custom-configured
ObjectMapperis one way to take further control of the JSON serialization process. For example, an extendedSerializerFactorycan be configured that provides custom serializers for specific types. The other option for refining the serialization process is to use Jackson's provided annotations on the types to be serialized, in which case a custom-configured ObjectMapper is unnecessary.
getObjectMapper
public ObjectMapper getObjectMapper()
Return the underlyingObjectMapperfor this view.
setPrettyPrint
public void setPrettyPrint(boolean prettyPrint)
Whether to use theDefaultPrettyPrinterwhen writing JSON. This is a shortcut for setting up anObjectMapperas follows:ObjectMapper mapper = new ObjectMapper(); mapper.configure(SerializationFeature.INDENT_OUTPUT, true); converter.setObjectMapper(mapper);
canRead
public boolean canRead(Class<?> clazz, MediaType mediaType)
从类复制的说明:AbstractHttpMessageConverterThis implementation checks if the given class is supported, and if the supported media typesinclude the given media type.- 指定者:
canRead在接口中HttpMessageConverter<Object>- 覆盖:
canRead在类中AbstractHttpMessageConverter<Object>- 参数:
clazz- the class to test for readabilitymediaType- the media type to read (can benullif not specified); typically the value of aContent-Typeheader.- 返回:
trueif readable;falseotherwise
canRead
public boolean canRead(Type type, Class<?> contextClass, MediaType mediaType)
从接口复制的说明:GenericHttpMessageConverterIndicates whether the given type can be read by this converter. This method should perform the same checks thanHttpMessageConverter.canRead(Class, MediaType)with additional ones related to the generic type.- 指定者:
canRead在接口中GenericHttpMessageConverter<Object>- 覆盖:
canRead在类中AbstractGenericHttpMessageConverter<Object>- 参数:
type- the (potentially generic) type to test for readabilitycontextClass- a context class for the target type, for example a class in which the target type appears in a method signature (can benull)mediaType- the media type to read, can benullif not specified. Typically the value of aContent-Typeheader.- 返回:
trueif readable;falseotherwise
canWrite
public boolean canWrite(Class<?> clazz, MediaType mediaType)
从类复制的说明:AbstractHttpMessageConverterThis implementation checks if the given class is supported, and if the supported media types include the given media type.- 指定者:
canWrite在接口中HttpMessageConverter<Object>- 覆盖:
canWrite在类中AbstractHttpMessageConverter<Object>- 参数:
clazz- the class to test for writabilitymediaType- the media type to write (can benullif not specified); typically the value of anAcceptheader.- 返回:
trueif writable;falseotherwise
logWarningIfNecessary
protected void logWarningIfNecessary(Type type, Throwable cause)
Determine whether to log the given exception coming from aObjectMapper.canDeserialize(com.fasterxml.jackson.databind.JavaType)/ObjectMapper.canSerialize(java.lang.Class<?>)check.- 参数:
type- the class that Jackson tested for (de-)serializabilitycause- the Jackson-thrown exception to evaluate (typically aJsonMappingException)- 从以下版本开始:
- 4.3
readInternal
protected Object readInternal(Class<?> clazz, HttpInputMessage inputMessage) throws IOException, HttpMessageNotReadableException
从类复制的说明:AbstractHttpMessageConverterAbstract template method that reads the actual object. Invoked fromAbstractHttpMessageConverter.read(java.lang.Class<? extends T>, org.springframework.http.HttpInputMessage).- 指定者:
readInternal在类中AbstractHttpMessageConverter<Object>- 参数:
clazz- the type of object to returninputMessage- the HTTP input message to read from- 返回:
- the converted object
- 抛出:
IOException- in case of I/O errorsHttpMessageNotReadableException- in case of conversion errors
read
public Object read(Type type, Class<?> contextClass, HttpInputMessage inputMessage) throws IOException, HttpMessageNotReadableException
从接口复制的说明:GenericHttpMessageConverterRead an object of the given type form the given input message, and returns it.- 参数:
type- the (potentially generic) type of object to return. This type must have previously been passed to thecanReadmethod of this interface, which must have returnedtrue.contextClass- a context class for the target type, for example a class in which the target type appears in a method signature (can benull)inputMessage- the HTTP input message to read from- 返回:
- the converted object
- 抛出:
IOException- in case of I/O errorsHttpMessageNotReadableException- in case of conversion errors
writeInternal
protected void writeInternal(Object object, Type type, HttpOutputMessage outputMessage) throws IOException, HttpMessageNotWritableException
从类复制的说明:AbstractGenericHttpMessageConverterAbstract template method that writes the actual body. Invoked fromAbstractGenericHttpMessageConverter.write(T, java.lang.reflect.Type, org.springframework.http.MediaType, org.springframework.http.HttpOutputMessage).- 指定者:
writeInternal在类中AbstractGenericHttpMessageConverter<Object>- 参数:
object- the object to write to the output messagetype- the type of object to write (may benull)outputMessage- the HTTP output message to write to- 抛出:
IOException- in case of I/O errorsHttpMessageNotWritableException- in case of conversion errors
writePrefix
protected void writePrefix(JsonGenerator generator, Object object) throws IOException
Write a prefix before the main content.- 参数:
generator- the generator to use for writing content.object- the object to write to the output message.- 抛出:
IOException
writeSuffix
protected void writeSuffix(JsonGenerator generator, Object object) throws IOException
Write a suffix after the main content.- 参数:
generator- the generator to use for writing content.object- the object to write to the output message.- 抛出:
IOException
getJavaType
protected JavaType getJavaType(Type type, Class<?> contextClass)
Return the JacksonJavaTypefor the specified type and context class.The default implementation returns
typeFactory.constructType(type, contextClass), but this can be overridden in subclasses, to allow for custom generic collection handling. For instance:protected JavaType getJavaType(Type type) { if (type instanceof Class && List.class.isAssignableFrom((Class)type)) { return TypeFactory.collectionType(ArrayList.class, MyBean.class); } else { return super.getJavaType(type); } }- 参数:
type- the generic type to return the Jackson JavaType forcontextClass- a context class for the target type, for example a class in which the target type appears in a method signature (can benull)- 返回:
- the Jackson JavaType
getJsonEncoding
protected JsonEncoding getJsonEncoding(MediaType contentType)
Determine the JSON encoding to use for the given content type.- 参数:
contentType- the media type as requested by the caller- 返回:
- the JSON encoding to use (never
null)
getDefaultContentType
protected MediaType getDefaultContentType(Object object) throws IOException
从类复制的说明:AbstractHttpMessageConverterReturns the default content type for the given type. Called whenAbstractHttpMessageConverter.write(T, org.springframework.http.MediaType, org.springframework.http.HttpOutputMessage)is invoked without a specified content type parameter.By default, this returns the first element of the
supportedMediaTypesproperty, if any. Can be overridden in subclasses.- 覆盖:
getDefaultContentType在类中AbstractHttpMessageConverter<Object>- 参数:
object- the type to return the content type for- 返回:
- the content type, or
nullif not known - 抛出:
IOException
getContentLength
protected Long getContentLength(Object object, MediaType contentType) throws IOException
从类复制的说明:AbstractHttpMessageConverterReturns the content length for the given type.By default, this returns
null, meaning that the content length is unknown. Can be overridden in subclasses.- 覆盖:
getContentLength在类中AbstractHttpMessageConverter<Object>- 参数:
object- the type to return the content length for- 返回:
- the content length, or
nullif not known - 抛出:
IOException