public abstract class DefaultSerializerProvider extends SerializerProvider implements Serializable
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.
Modifier and Type | Class and Description |
---|---|
static class |
DefaultSerializerProvider.Impl
Concrete implementation that defines factory method(s),
defined as final.
|
Modifier and Type | Field and Description |
---|---|
protected JsonGenerator |
_generator
Generator used for serialization.
|
protected ArrayList<ObjectIdGenerator<?>> |
_objectIdGenerators |
protected Map<Object,WritableObjectId> |
_seenObjectIds
Per-serialization map Object Ids that have seen so far, iff
Object Id handling is enabled.
|
_attributes, _config, _dateFormat, _keySerializer, _knownSerializers, _nullKeySerializer, _nullValueSerializer, _serializationView, _serializerCache, _serializerFactory, _stdNullValueSerializer, _unknownTypeSerializer, CACHE_UNKNOWN_MAPPINGS, DEFAULT_NULL_KEY_SERIALIZER, DEFAULT_UNKNOWN_SERIALIZER
Modifier | Constructor and Description |
---|---|
protected |
DefaultSerializerProvider() |
protected |
DefaultSerializerProvider(DefaultSerializerProvider src) |
protected |
DefaultSerializerProvider(SerializerProvider src,
SerializationConfig config,
SerializerFactory f) |
Modifier and Type | Method and Description |
---|---|
protected Map<Object,WritableObjectId> |
_createObjectIdMap()
Overridable helper method used for creating
Map
used for storing mappings from serializable objects to their
Object Ids. |
protected void |
_serializeNull(JsonGenerator gen)
Helper method called when root value to serialize is null
|
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)
|
DefaultSerializerProvider |
copy()
Method needed to ensure that
ObjectMapper.copy() will work
properly; specifically, that caches are cleared, but settings
will otherwise remain identical; and that no sharing of state
occurs. |
abstract DefaultSerializerProvider |
createInstance(SerializationConfig config,
SerializerFactory jsf)
Method that sub-classes need to implement: 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)
Deprecated.
Should not be used any more
|
JsonGenerator |
getGenerator()
Accessor for the
JsonGenerator currently in use for serializing
content. |
boolean |
hasSerializerFor(Class<?> cls,
AtomicReference<Throwable> cause)
Method that can be called to see if this serializer provider
can find a serializer for an instance of given class.
|
void |
serializePolymorphic(JsonGenerator gen,
Object value,
JavaType rootType,
JsonSerializer<Object> valueSer,
TypeSerializer typeSer)
Alternate serialization call used for polymorphic types, when
TypeSerializer
is already known, but the actual serializer may or may not be. |
void |
serializePolymorphic(JsonGenerator gen,
Object value,
TypeSerializer typeSer)
Deprecated.
since 2.6; remove from 2.7 or later
|
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 gen,
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 gen,
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 gen,
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. |
_createAndCacheUntypedSerializer, _createAndCacheUntypedSerializer, _createUntypedSerializer, _dateFormat, _desc, _findExplicitUntypedSerializer, _handleContextualResolvable, _handleResolvable, _quotedString, _reportIncompatibleRootType, canOverrideAccessModifiers, defaultSerializeDateKey, defaultSerializeDateKey, defaultSerializeDateValue, defaultSerializeDateValue, defaultSerializeField, defaultSerializeNull, defaultSerializeValue, findKeySerializer, findKeySerializer, findNullKeySerializer, findNullValueSerializer, findPrimaryPropertySerializer, findPrimaryPropertySerializer, findTypedValueSerializer, findTypedValueSerializer, findTypeSerializer, findValueSerializer, findValueSerializer, findValueSerializer, findValueSerializer, getActiveView, getAnnotationIntrospector, getAttribute, getConfig, getDefaultNullKeySerializer, getDefaultNullValueSerializer, getDefaultPropertyFormat, getDefaultPropertyInclusion, getFilterProvider, getLocale, getSerializationView, getTimeZone, getTypeFactory, getUnknownTypeSerializer, handlePrimaryContextualization, handleSecondaryContextualization, hasSerializationFeatures, isEnabled, isEnabled, isUnknownTypeSerializer, mappingException, mappingException, reportBadPropertyDefinition, reportBadTypeDefinition, reportMappingProblem, reportMappingProblem, setAttribute, setDefaultKeySerializer, setNullKeySerializer, setNullValueSerializer
constructSpecializedType, constructType, converterInstance, objectIdGeneratorInstance, objectIdResolverInstance
protected transient Map<Object,WritableObjectId> _seenObjectIds
protected transient ArrayList<ObjectIdGenerator<?>> _objectIdGenerators
protected transient JsonGenerator _generator
protected DefaultSerializerProvider()
protected DefaultSerializerProvider(SerializerProvider src, SerializationConfig config, SerializerFactory f)
protected DefaultSerializerProvider(DefaultSerializerProvider src)
public abstract DefaultSerializerProvider createInstance(SerializationConfig config, SerializerFactory jsf)
public DefaultSerializerProvider copy()
ObjectMapper.copy()
will work
properly; specifically, that caches are cleared, but settings
will otherwise remain identical; and that no sharing of state
occurs.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 classJsonMappingException
public WritableObjectId findObjectId(Object forPojo, ObjectIdGenerator<?> generatorType)
SerializerProvider
findObjectId
in class SerializerProvider
protected Map<Object,WritableObjectId> _createObjectIdMap()
Map
used for storing mappings from serializable objects to their
Object Ids.public boolean hasSerializerFor(Class<?> cls, AtomicReference<Throwable> cause)
Note that no Exceptions are thrown, including unchecked ones: implementations are to swallow exceptions if necessary.
public JsonGenerator getGenerator()
JsonGenerator
currently in use for serializing
content. Null for blueprint instances; non-null for actual active
provider instances.getGenerator
in class SerializerProvider
public void serializeValue(JsonGenerator gen, Object value) throws IOException
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
public void serializeValue(JsonGenerator gen, Object value, JavaType rootType) throws IOException
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 typesIOException
public void serializeValue(JsonGenerator gen, Object value, JavaType rootType, JsonSerializer<Object> ser) throws IOException
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 nullIOException
public void serializePolymorphic(JsonGenerator gen, Object value, JavaType rootType, JsonSerializer<Object> valueSer, TypeSerializer typeSer) throws IOException
TypeSerializer
is already known, but the actual serializer may or may not be.IOException
@Deprecated public void serializePolymorphic(JsonGenerator gen, Object value, TypeSerializer typeSer) throws IOException
IOException
protected void _serializeNull(JsonGenerator gen) throws IOException
IOException
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 void acceptJsonFormatVisitor(JavaType javaType, JsonFormatVisitorWrapper visitor) throws JsonMappingException
ObjectMapper
and ObjectWriter
to to expose the format of the given to to the given visitorjavaType
- The type for which to generate formatvisitor
- the visitor to accept the formatJsonMappingException
@Deprecated public JsonSchema generateJsonSchema(Class<?> type) throws JsonMappingException
ObjectMapper
to generate JSON schema for
given type.type
- The type for which to generate schemaJsonMappingException
Copyright © 2008–2016 FasterXML. All rights reserved.