Class SimpleModule
- java.lang.Object
-
- com.fasterxml.jackson.databind.Module
-
- com.fasterxml.jackson.databind.module.SimpleModule
-
- All Implemented Interfaces:
Versioned
,java.io.Serializable
- Direct Known Subclasses:
JavaTimeModule
,JSR310Module
public class SimpleModule extends Module implements java.io.Serializable
VanillaModule
implementation that allows registration of serializers and deserializers, bean serializer and deserializer modifiers, registration of subtypes and mix-ins as well as some other commonly needed aspects (addition of customAbstractTypeResolver
s,ValueInstantiator
s).NOTE: although it is not expected that sub-types should need to override
setupModule(SetupContext)
method, if they choose to do so they MUST callsuper.setupModule(context);
to ensure that registration works as expected.WARNING: when registering
JsonSerializer
s andJsonDeserializer
s, only type erasedClass
is compared: this means that usually you should NOT use this implementation for registering structured types such asCollection
s orMap
s: this because parametric type information will not be considered and you may end up having "wrong" handler for your type. What you need to do, instead, is to implementDeserializers
and/orSerializers
callbacks to match full type signatures (withJavaType
).- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.Module
Module.SetupContext
-
-
Constructor Summary
Constructors Constructor Description SimpleModule()
Constructors that should only be used for non-reusable convenience modules used by app code: "real" modules should use actual name and version number information.SimpleModule(Version version)
Convenience constructor that will use specified Version, including name fromVersion.getArtifactId()
.SimpleModule(java.lang.String name)
Convenience constructor that will default version toVersion.unknownVersion()
.SimpleModule(java.lang.String name, Version version)
Constructor to use for actual reusable modules.SimpleModule(java.lang.String name, Version version, java.util.List<JsonSerializer<?>> serializers)
SimpleModule(java.lang.String name, Version version, java.util.Map<java.lang.Class<?>,JsonDeserializer<?>> deserializers)
SimpleModule(java.lang.String name, Version version, java.util.Map<java.lang.Class<?>,JsonDeserializer<?>> deserializers, java.util.List<JsonSerializer<?>> serializers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> SimpleModule
addAbstractTypeMapping(java.lang.Class<T> superType, java.lang.Class<? extends T> subType)
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete)<T> SimpleModule
addDeserializer(java.lang.Class<T> type, JsonDeserializer<? extends T> deser)
Method for adding deserializer to handle specified type.SimpleModule
addKeyDeserializer(java.lang.Class<?> type, KeyDeserializer deser)
<T> SimpleModule
addKeySerializer(java.lang.Class<? extends T> type, JsonSerializer<T> ser)
SimpleModule
addSerializer(JsonSerializer<?> ser)
Method for adding serializer to handle type that the serializer claims to handle (seeJsonSerializer.handledType()
).<T> SimpleModule
addSerializer(java.lang.Class<? extends T> type, JsonSerializer<T> ser)
Method for adding serializer to handle values of specific type.SimpleModule
addValueInstantiator(java.lang.Class<?> beanType, ValueInstantiator inst)
Method for registeringValueInstantiator
to use when deserializing instances of typebeanType
.java.lang.String
getModuleName()
Method that returns a display that can be used by Jackson for informational purposes, as well as in associating extensions with module that provides them.java.lang.Object
getTypeId()
Since instances are likely to be custom, implementation returnsnull
if (but only if!) this class is directly instantiated; but class name (default impl) for sub-classes.SimpleModule
registerSubtypes(NamedType... subtypes)
Method for adding set of subtypes (along with type name to use) to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.SimpleModule
registerSubtypes(java.lang.Class<?>... subtypes)
Method for adding set of subtypes to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.SimpleModule
registerSubtypes(java.util.Collection<java.lang.Class<?>> subtypes)
Method for adding set of subtypes (along with type name to use) to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.void
setAbstractTypes(SimpleAbstractTypeResolver atr)
Resets currently configured abstract type mappingsSimpleModule
setDeserializerModifier(BeanDeserializerModifier mod)
void
setDeserializers(SimpleDeserializers d)
Resets all currently configured deserializers.void
setKeyDeserializers(SimpleKeyDeserializers kd)
Resets all currently configured key deserializers.void
setKeySerializers(SimpleSerializers ks)
Resets all currently configured key serializers.SimpleModule
setMixInAnnotation(java.lang.Class<?> targetType, java.lang.Class<?> mixinClass)
Method for specifying that annotations define bymixinClass
should be "mixed in" with annotations thattargetType
has (as if they were directly included on it!).SimpleModule
setSerializerModifier(BeanSerializerModifier mod)
void
setSerializers(SimpleSerializers s)
Resets all currently configured serializers.void
setupModule(Module.SetupContext context)
Standard implementation handles registration of all configured customizations: it is important that sub-classes call this implementation (usually before additional custom logic) if they choose to override it; otherwise customizations will not be registered.void
setValueInstantiators(SimpleValueInstantiators svi)
Resets all currently configured value instantiatorsVersion
version()
Method that returns version of this module.-
Methods inherited from class com.fasterxml.jackson.databind.Module
getDependencies
-
-
-
-
Constructor Detail
-
SimpleModule
public SimpleModule()
Constructors that should only be used for non-reusable convenience modules used by app code: "real" modules should use actual name and version number information.
-
SimpleModule
public SimpleModule(java.lang.String name)
Convenience constructor that will default version toVersion.unknownVersion()
.
-
SimpleModule
public SimpleModule(Version version)
Convenience constructor that will use specified Version, including name fromVersion.getArtifactId()
.
-
SimpleModule
public SimpleModule(java.lang.String name, Version version)
Constructor to use for actual reusable modules. ObjectMapper may use name as identifier to notice attempts for multiple registrations of the same module (although it does not have to).- Parameters:
name
- Unique name of the moduleversion
- Version of the module
-
SimpleModule
public SimpleModule(java.lang.String name, Version version, java.util.Map<java.lang.Class<?>,JsonDeserializer<?>> deserializers)
- Since:
- 2.1
-
SimpleModule
public SimpleModule(java.lang.String name, Version version, java.util.List<JsonSerializer<?>> serializers)
- Since:
- 2.1
-
SimpleModule
public SimpleModule(java.lang.String name, Version version, java.util.Map<java.lang.Class<?>,JsonDeserializer<?>> deserializers, java.util.List<JsonSerializer<?>> serializers)
- Since:
- 2.1
-
-
Method Detail
-
getTypeId
public java.lang.Object getTypeId()
Since instances are likely to be custom, implementation returnsnull
if (but only if!) this class is directly instantiated; but class name (default impl) for sub-classes.
-
setSerializers
public void setSerializers(SimpleSerializers s)
Resets all currently configured serializers.
-
setDeserializers
public void setDeserializers(SimpleDeserializers d)
Resets all currently configured deserializers.
-
setKeySerializers
public void setKeySerializers(SimpleSerializers ks)
Resets all currently configured key serializers.
-
setKeyDeserializers
public void setKeyDeserializers(SimpleKeyDeserializers kd)
Resets all currently configured key deserializers.
-
setAbstractTypes
public void setAbstractTypes(SimpleAbstractTypeResolver atr)
Resets currently configured abstract type mappings
-
setValueInstantiators
public void setValueInstantiators(SimpleValueInstantiators svi)
Resets all currently configured value instantiators
-
setDeserializerModifier
public SimpleModule setDeserializerModifier(BeanDeserializerModifier mod)
- Since:
- 2.2
-
setSerializerModifier
public SimpleModule setSerializerModifier(BeanSerializerModifier mod)
- Since:
- 2.2
-
addSerializer
public SimpleModule addSerializer(JsonSerializer<?> ser)
Method for adding serializer to handle type that the serializer claims to handle (seeJsonSerializer.handledType()
).WARNING! Type matching only uses type-erased
Class
and should NOT be used when registering serializers for generic types likeCollection
andMap
.
-
addSerializer
public <T> SimpleModule addSerializer(java.lang.Class<? extends T> type, JsonSerializer<T> ser)
Method for adding serializer to handle values of specific type.WARNING! Type matching only uses type-erased
Class
and should NOT be used when registering serializers for generic types likeCollection
andMap
.
-
addKeySerializer
public <T> SimpleModule addKeySerializer(java.lang.Class<? extends T> type, JsonSerializer<T> ser)
-
addDeserializer
public <T> SimpleModule addDeserializer(java.lang.Class<T> type, JsonDeserializer<? extends T> deser)
Method for adding deserializer to handle specified type.WARNING! Type matching only uses type-erased
Class
and should NOT be used when registering serializers for generic types likeCollection
andMap
.
-
addKeyDeserializer
public SimpleModule addKeyDeserializer(java.lang.Class<?> type, KeyDeserializer deser)
-
addAbstractTypeMapping
public <T> SimpleModule addAbstractTypeMapping(java.lang.Class<T> superType, java.lang.Class<? extends T> subType)
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete)
-
registerSubtypes
public SimpleModule registerSubtypes(java.lang.Class<?>... subtypes)
Method for adding set of subtypes to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.
-
registerSubtypes
public SimpleModule registerSubtypes(NamedType... subtypes)
Method for adding set of subtypes (along with type name to use) to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.
-
registerSubtypes
public SimpleModule registerSubtypes(java.util.Collection<java.lang.Class<?>> subtypes)
Method for adding set of subtypes (along with type name to use) to be registered withObjectMapper
this is an alternative to using annotations in super type to indicate subtypes.- Since:
- 2.9
-
addValueInstantiator
public SimpleModule addValueInstantiator(java.lang.Class<?> beanType, ValueInstantiator inst)
Method for registeringValueInstantiator
to use when deserializing instances of typebeanType
.Instantiator is registered when module is registered for
ObjectMapper
.
-
setMixInAnnotation
public SimpleModule setMixInAnnotation(java.lang.Class<?> targetType, java.lang.Class<?> mixinClass)
Method for specifying that annotations define bymixinClass
should be "mixed in" with annotations thattargetType
has (as if they were directly included on it!).Mix-in annotations are registered when module is registered for
ObjectMapper
.
-
getModuleName
public java.lang.String getModuleName()
Description copied from class:Module
Method that returns a display that can be used by Jackson for informational purposes, as well as in associating extensions with module that provides them.- Specified by:
getModuleName
in classModule
-
setupModule
public void setupModule(Module.SetupContext context)
Standard implementation handles registration of all configured customizations: it is important that sub-classes call this implementation (usually before additional custom logic) if they choose to override it; otherwise customizations will not be registered.- Specified by:
setupModule
in classModule
-
-