|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.fasterxml.jackson.databind.SerializerProvider com.fasterxml.jackson.databind.ser.DefaultSerializerProvider
public abstract class DefaultSerializerProvider
Standard implementation used by ObjectMapper
:
adds methods only exposed to ObjectMapper
,
as well as constructors.
Note that class is abstract just because it does not
define createInstance(com.fasterxml.jackson.databind.SerializationConfig, com.fasterxml.jackson.databind.ser.SerializerFactory)
method.
Also note that all custom SerializerProvider
implementations must sub-class this class: ObjectMapper
requires this type, not basic provider type.
Nested Class Summary | |
---|---|
static class |
DefaultSerializerProvider.Impl
Concrete implementation that defines factory method(s), defined as final. |
Field Summary | |
---|---|
protected ArrayList<ObjectIdGenerator<?>> |
_objectIdGenerators
|
protected IdentityHashMap<Object,WritableObjectId> |
_seenObjectIds
Per-serialization map Object Ids that have seen so far, iff Object Id handling is enabled. |
Fields inherited from class com.fasterxml.jackson.databind.SerializerProvider |
---|
_config, _dateFormat, _keySerializer, _knownSerializers, _nullKeySerializer, _nullValueSerializer, _rootNames, _serializationView, _serializerCache, _serializerFactory, _unknownTypeSerializer, CACHE_UNKNOWN_MAPPINGS, DEFAULT_NULL_KEY_SERIALIZER, DEFAULT_UNKNOWN_SERIALIZER, TYPE_OBJECT |
Constructor Summary | |
---|---|
protected |
DefaultSerializerProvider()
|
protected |
DefaultSerializerProvider(SerializerProvider src,
SerializationConfig config,
SerializerFactory f)
|
Method Summary | |
---|---|
void |
acceptJsonFormatVisitor(JavaType javaType,
JsonFormatVisitorWrapper visitor)
The method to be called by ObjectMapper and ObjectWriter
to to expose the format of the given to to the given visitor |
int |
cachedSerializersCount()
Method that can be used to determine how many serializers this provider is caching currently (if it does caching: default implementation does) Exact count depends on what kind of serializers get cached; default implementation caches all serializers, including ones that are eagerly constructed (for optimal access speed) |
abstract DefaultSerializerProvider |
createInstance(SerializationConfig config,
SerializerFactory jsf)
Overridable method, used to create a non-blueprint instances from the blueprint. |
WritableObjectId |
findObjectId(Object forPojo,
ObjectIdGenerator<?> generatorType)
Method called to find the Object Id for given POJO, if one has been generated. |
void |
flushCachedSerializers()
Method that will drop all serializers currently cached by this provider. |
JsonSchema |
generateJsonSchema(Class<?> type)
The method to be called by ObjectMapper and ObjectWriter
to generate JSON schema for
given type. |
boolean |
hasSerializerFor(Class<?> cls)
Method that can be called to see if this serializer provider can find a serializer for an instance of given class. |
ObjectIdGenerator<?> |
objectIdGeneratorInstance(Annotated annotated,
ObjectIdInfo objectIdInfo)
|
JsonSerializer<Object> |
serializerInstance(Annotated annotated,
Object serDef)
Method that can be called to construct and configure serializer instance, either given a Class to instantiate (with default constructor),
or an uninitialized serializer instance. |
void |
serializeValue(JsonGenerator jgen,
Object value)
The method to be called by ObjectMapper and ObjectWriter
for serializing given value, using serializers that
this provider has access to (via caching and/or creating new serializers
as need be). |
void |
serializeValue(JsonGenerator jgen,
Object value,
JavaType rootType)
The method to be called by ObjectMapper and ObjectWriter
for serializing given value (assumed to be of specified root type,
instead of runtime type of value),
using serializers that
this provider has access to (via caching and/or creating new serializers
as need be), |
void |
serializeValue(JsonGenerator jgen,
Object value,
JavaType rootType,
JsonSerializer<Object> ser)
The method to be called by ObjectWriter
for serializing given value (assumed to be of specified root type,
instead of runtime type of value), when it may know specific
JsonSerializer to use. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected transient IdentityHashMap<Object,WritableObjectId> _seenObjectIds
protected transient ArrayList<ObjectIdGenerator<?>> _objectIdGenerators
Constructor Detail |
---|
protected DefaultSerializerProvider()
protected DefaultSerializerProvider(SerializerProvider src, SerializationConfig config, SerializerFactory f)
Method Detail |
---|
public abstract DefaultSerializerProvider createInstance(SerializationConfig config, SerializerFactory jsf)
public void serializeValue(JsonGenerator jgen, Object value) throws IOException, JsonGenerationException
ObjectMapper
and ObjectWriter
for serializing given value, using serializers that
this provider has access to (via caching and/or creating new serializers
as need be).
IOException
JsonGenerationException
public void serializeValue(JsonGenerator jgen, Object value, JavaType rootType) throws IOException, JsonGenerationException
ObjectMapper
and ObjectWriter
for serializing given value (assumed to be of specified root type,
instead of runtime type of value),
using serializers that
this provider has access to (via caching and/or creating new serializers
as need be),
rootType
- Type to use for locating serializer to use, instead of actual
runtime type. Must be actual type, or one of its super types
IOException
JsonGenerationException
public void serializeValue(JsonGenerator jgen, Object value, JavaType rootType, JsonSerializer<Object> ser) throws IOException, JsonGenerationException
ObjectWriter
for serializing given value (assumed to be of specified root type,
instead of runtime type of value), when it may know specific
JsonSerializer
to use.
rootType
- Type to use for locating serializer to use, instead of actual
runtime type, if no serializer is passedser
- Root Serializer to use, if not null
IOException
JsonGenerationException
public JsonSchema generateJsonSchema(Class<?> type) throws JsonMappingException
ObjectMapper
and ObjectWriter
to generate JSON schema for
given type.
type
- The type for which to generate schema
JsonMappingException
public void acceptJsonFormatVisitor(JavaType javaType, JsonFormatVisitorWrapper visitor) throws JsonMappingException
ObjectMapper
and ObjectWriter
to to expose the format of the given to to the given visitor
javaType
- The type for which to generate formatvisitor
- the visitor to accept the format
JsonMappingException
public boolean hasSerializerFor(Class<?> cls)
Note that no Exceptions are thrown, including unchecked ones: implementations are to swallow exceptions if necessary.
public int cachedSerializersCount()
The main use case for this method is to allow conditional flushing of serializer cache, if certain number of entries is reached.
public void flushCachedSerializers()
public ObjectIdGenerator<?> objectIdGeneratorInstance(Annotated annotated, ObjectIdInfo objectIdInfo) throws JsonMappingException
objectIdGeneratorInstance
in class SerializerProvider
JsonMappingException
public WritableObjectId findObjectId(Object forPojo, ObjectIdGenerator<?> generatorType)
SerializerProvider
findObjectId
in class SerializerProvider
public JsonSerializer<Object> serializerInstance(Annotated annotated, Object serDef) throws JsonMappingException
SerializerProvider
Class
to instantiate (with default constructor),
or an uninitialized serializer instance.
Either way, serialize will be properly resolved
(via ResolvableSerializer
) and/or contextualized
(via ContextualSerializer
) as necessary.
serializerInstance
in class SerializerProvider
annotated
- Annotated entity that contained definitionserDef
- Serializer definition: either an instance or class
JsonMappingException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |