类 AbstractJackson2Encoder
- java.lang.Object
- org.springframework.http.codec.json.Jackson2CodecSupport
- org.springframework.http.codec.json.AbstractJackson2Encoder
- 所有已实现的接口:
Encoder<Object>,HttpMessageEncoder<Object>
public abstract class AbstractJackson2Encoder extends Jackson2CodecSupport implements HttpMessageEncoder<Object>
Base class providing support methods for Jackson 2.9 encoding. For non-streaming use cases,Fluxelements are collected into aListbefore serialization for performance reason.- 从以下版本开始:
- 5.0
- 作者:
- Sebastien Deleuze, Arjen Poutsma
字段概要
从类继承的字段 org.springframework.http.codec.json.Jackson2CodecSupport
JSON_VIEW_HINT, logger
构造器概要
构造器 限定符 构造器 说明 protectedAbstractJackson2Encoder(ObjectMapper mapper, MimeType... mimeTypes)Constructor with a JacksonObjectMapperto use.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleancanEncode(ResolvableType elementType, MimeType mimeType)Whether the encoder supports the given source element type and the MIME type for the output stream.protected ObjectWritercustomizeWriter(ObjectWriter writer, MimeType mimeType, ResolvableType elementType, Map<String,Object> hints)reactor.core.publisher.Flux<DataBuffer>encode(org.reactivestreams.Publisher<?> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, MimeType mimeType, Map<String,Object> hints)Encode a stream of Objects of typeTinto aDataBufferoutput stream.DataBufferencodeValue(Object value, DataBufferFactory bufferFactory, ResolvableType valueType, MimeType mimeType, Map<String,Object> hints)Encode an Object of type T to a data buffer.protected <A extends Annotation>
AgetAnnotation(MethodParameter parameter, Class<A> annotType)List<MimeType>getEncodableMimeTypes()Return the list of mime types this encoder supports.Map<String,Object>getEncodeHints(ResolvableType actualType, ResolvableType elementType, MediaType mediaType, ServerHttpRequest request, ServerHttpResponse response)Get decoding hints based on the server request or annotations on the target controller method parameter.protected JsonEncodinggetJsonEncoding(MimeType mimeType)Determine the JSON encoding to use for the given mime type.List<MediaType>getStreamingMediaTypes()Return "streaming" media types for which flushing should be performed automatically vs at the end of the input stream.voidsetStreamingMediaTypes(List<MediaType> mediaTypes)Configure "streaming" media types for which flushing should be performed automatically vs at the end of the stream.从类继承的方法 org.springframework.http.codec.json.Jackson2CodecSupport
getHints, getJavaType, getMimeTypes, getObjectMapper, getParameter, supportsMimeType
构造器详细资料
AbstractJackson2Encoder
protected AbstractJackson2Encoder(ObjectMapper mapper, MimeType... mimeTypes)
Constructor with a JacksonObjectMapperto use.
方法详细资料
setStreamingMediaTypes
public void setStreamingMediaTypes(List<MediaType> mediaTypes)
Configure "streaming" media types for which flushing should be performed automatically vs at the end of the stream.By default this is set to
MediaType.APPLICATION_STREAM_JSON.- 参数:
mediaTypes- one or more media types to add to the list- 另请参阅:
HttpMessageEncoder.getStreamingMediaTypes()
canEncode
public boolean canEncode(ResolvableType elementType, @Nullable MimeType mimeType)
从接口复制的说明:EncoderWhether the encoder supports the given source element type and the MIME type for the output stream.
encode
public reactor.core.publisher.Flux<DataBuffer> encode(org.reactivestreams.Publisher<?> inputStream, DataBufferFactory bufferFactory, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map<String,Object> hints)
从接口复制的说明:EncoderEncode a stream of Objects of typeTinto aDataBufferoutput stream.- 指定者:
encode在接口中Encoder<Object>- 参数:
inputStream- the input stream of Objects to encode. If the input should be encoded as a single value rather than as a stream of elements, an instance ofMonoshould be used.bufferFactory- for creating output streamDataBuffer'selementType- the expected type of elements in the input stream; this type must have been previously passed to theEncoder.canEncode(org.springframework.core.ResolvableType, org.springframework.util.MimeType)method and it must have returnedtrue.mimeType- the MIME type for the output content (optional)hints- additional information about how to encode- 返回:
- the output stream
encodeValue
public DataBuffer encodeValue(Object value, DataBufferFactory bufferFactory, ResolvableType valueType, @Nullable MimeType mimeType, @Nullable Map<String,Object> hints)
从接口复制的说明:EncoderEncode an Object of type T to a data buffer. This is useful for scenarios, that distinct messages (or events) are encoded and handled individually, in fully aggregated form.By default this method raises
UnsupportedOperationExceptionand it is expected that some encoders cannot produce a single buffer or cannot do so synchronously (e.g. encoding aResource).- 指定者:
encodeValue在接口中Encoder<Object>- 参数:
value- the value to be encodedbufferFactory- for creating the outputDataBuffervalueType- the type for the value being encodedmimeType- the MIME type for the output content (optional)hints- additional information about how to encode- 返回:
- the encoded content
customizeWriter
protected ObjectWriter customizeWriter(ObjectWriter writer, @Nullable MimeType mimeType, ResolvableType elementType, @Nullable Map<String,Object> hints)
getJsonEncoding
protected JsonEncoding getJsonEncoding(@Nullable MimeType mimeType)
Determine the JSON encoding to use for the given mime type.- 参数:
mimeType- the mime type as requested by the caller- 返回:
- the JSON encoding to use (never
null) - 从以下版本开始:
- 5.0.5
getEncodableMimeTypes
public List<MimeType> getEncodableMimeTypes()
从接口复制的说明:EncoderReturn the list of mime types this encoder supports.- 指定者:
getEncodableMimeTypes在接口中Encoder<Object>
getStreamingMediaTypes
public List<MediaType> getStreamingMediaTypes()
从接口复制的说明:HttpMessageEncoderReturn "streaming" media types for which flushing should be performed automatically vs at the end of the input stream.- 指定者:
getStreamingMediaTypes在接口中HttpMessageEncoder<Object>
getEncodeHints
public Map<String,Object> getEncodeHints(@Nullable ResolvableType actualType, ResolvableType elementType, @Nullable MediaType mediaType, ServerHttpRequest request, ServerHttpResponse response)
从接口复制的说明:HttpMessageEncoderGet decoding hints based on the server request or annotations on the target controller method parameter.- 指定者:
getEncodeHints在接口中HttpMessageEncoder<Object>- 参数:
actualType- the actual source type to encode, possibly a reactive wrapper and sourced fromMethodParameter, i.e. providing access to method annotations.elementType- the element type withinFlux/Monothat we're trying to encode.request- the current requestresponse- the current response- 返回:
- a Map with hints, possibly empty
getAnnotation
protected <A extends Annotation> A getAnnotation(MethodParameter parameter, Class<A> annotType)
- 指定者:
getAnnotation在类中Jackson2CodecSupport