Class JsonValueSerializer
java.lang.Object
com.fasterxml.jackson.databind.JsonSerializer<Object>
com.fasterxml.jackson.databind.ser.std.StdSerializer<Object>
com.fasterxml.jackson.databind.ser.std.JsonValueSerializer
- All Implemented Interfaces:
JsonFormatVisitable, SchemaAware, ContextualSerializer, Serializable
public class JsonValueSerializer
extends StdSerializer<Object>
implements ContextualSerializer, JsonFormatVisitable
Serializer class that can serialize Object that have a
JsonValue annotation to
indicate that serialization should be done by calling the method
annotated, and serializing result it returns.
Implementation note: we will post-process resulting serializer
(much like what is done with BeanSerializer)
to figure out actual serializers for final types.
This must be done from createContextual(SerializerProvider, BeanProperty) method, and NOT from constructor;
otherwise we could end up with an infinite loop.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class JsonSerializer
JsonSerializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AnnotatedMemberprotected PropertySerializerMapIf value type cannot be statically determined, mapping from runtime value types to serializers are cached in this object.protected final booleanThis is a flag that is set in rare (?) cases where this serializer is used for "natural" types (boolean, int, String, double); and where we actually must force type information wrapping, even though one would not normally be added.Names of properties to ignore from Value class accessed using accessor.protected final BeanPropertyprotected final JsonSerializer<Object> protected final JavaTypeDeclared type of the value accessed, as declared by accessor.protected final TypeSerializerFields inherited from class StdSerializer
_handledType -
Constructor Summary
ConstructorsConstructorDescriptionJsonValueSerializer(AnnotatedMember accessor, JsonSerializer<?> ser) Deprecated.Since 2.12JsonValueSerializer(AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser) Deprecated.JsonValueSerializer(AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser, Set<String> ignoredProperties) JsonValueSerializer(JsonValueSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> ser, boolean forceTypeInfo) -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean_acceptJsonFormatVisitorForEnum(JsonFormatVisitorWrapper visitor, JavaType typeHint, Class<?> enumType) Overridable helper method used for special case handling of schema information for Enums.protected JsonSerializer<Object> _findDynamicSerializer(SerializerProvider ctxt, Class<?> valueClass) protected static JsonSerializer<Object> _withIgnoreProperties(JsonSerializer<?> ser, Set<String> ignoredProperties) Internal helper that configures the providedserto ignore properties specified byJsonIgnoreProperties.voidacceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) Default implementation specifies no format.static JsonValueSerializerconstruct(SerializationConfig config, AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser) createContextual(SerializerProvider ctxt, BeanProperty property) We can try to find the actual serializer for value, if we can statically figure out what the result type must be.getSchema(SerializerProvider ctxt, Type typeHint) Deprecated.Since 2.15booleanisEmpty(SerializerProvider ctxt, Object bean) Method called to check whether given serializable value is considered "empty" value (for purposes of suppressing serialization of empty values).protected booleanisNaturalTypeWithStdHandling(Class<?> rawType, JsonSerializer<?> ser) voidserialize(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider ctxt) Method that can be called to ask implementation to serialize values of type this serializer handles.voidserializeWithType(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider ctxt, TypeSerializer typeSer0) Method that can be called to ask implementation to serialize values of type this serializer handles, using specified type serializer for embedding necessary type information.toString()protected JsonValueSerializerwithResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> ser, boolean forceTypeInfo) Methods inherited from class StdSerializer
_neitherNull, _nonEmpty, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrowMethods inherited from class JsonSerializer
getDelegatee, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId, withIgnoredProperties
-
Field Details
-
_accessor
- Since:
- 2.9
-
_valueTypeSerializer
- Since:
- 2.12
-
_valueSerializer
-
_property
-
_valueType
Declared type of the value accessed, as declared by accessor.- Since:
- 2.12
-
_forceTypeInformation
protected final boolean _forceTypeInformationThis is a flag that is set in rare (?) cases where this serializer is used for "natural" types (boolean, int, String, double); and where we actually must force type information wrapping, even though one would not normally be added. -
_ignoredProperties
-
_dynamicSerializers
If value type cannot be statically determined, mapping from runtime value types to serializers are cached in this object.- Since:
- 2.12
-
-
Constructor Details
-
JsonValueSerializer
public JsonValueSerializer(AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser, Set<String> ignoredProperties) - Parameters:
ser- Explicit serializer to use, if caller knows it (which occurs if and only if the "value method" was annotated withJsonSerialize.using()), otherwise null- Since:
- 2.12 added
TypeSerializersince 2.11
-
JsonValueSerializer
@Deprecated public JsonValueSerializer(AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser) Deprecated. -
JsonValueSerializer
Deprecated.Since 2.12 -
JsonValueSerializer
public JsonValueSerializer(JsonValueSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> ser, boolean forceTypeInfo)
-
-
Method Details
-
construct
public static JsonValueSerializer construct(SerializationConfig config, AnnotatedMember accessor, TypeSerializer vts, JsonSerializer<?> ser) - Since:
- 2.16
-
withResolved
protected JsonValueSerializer withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> ser, boolean forceTypeInfo) -
isEmpty
Description copied from class:JsonSerializerMethod called to check whether given serializable value is considered "empty" value (for purposes of suppressing serialization of empty values).Default implementation will consider only null values to be empty.
NOTE: replaces
JsonSerializer.isEmpty(Object), which was deprecated in 2.5- Overrides:
isEmptyin classJsonSerializer<Object>
-
createContextual
public JsonSerializer<?> createContextual(SerializerProvider ctxt, BeanProperty property) throws JsonMappingException We can try to find the actual serializer for value, if we can statically figure out what the result type must be.- Specified by:
createContextualin interfaceContextualSerializer- Parameters:
ctxt- Serializer provider to use for accessing config, other serializersproperty- Method or field that represents the property (and is used to access value to serialize). Should be available; but there may be cases where caller cannot provide it and null is passed instead (in which case impls usually pass 'this' serializer as is)- Returns:
- Serializer to use for serializing values of specified property; may be this instance or a new instance.
- Throws:
JsonMappingException
-
serialize
public void serialize(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider ctxt) throws IOException Description copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serializein classStdSerializer<Object>- Parameters:
bean- Value to serialize; can not be null.gen- Generator used to output resulting Json contentctxt- Provider that can be used to get serializers for serializing Objects value contains, if any.- Throws:
IOException
-
serializeWithType
public void serializeWithType(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider ctxt, TypeSerializer typeSer0) throws IOException Description copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles, using specified type serializer for embedding necessary type information.Default implementation will throw
UnsupportedOperationExceptionto indicate that proper type handling needs to be implemented.For simple datatypes written as a single scalar value (JSON String, Number, Boolean), implementation would look like:
// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, gen); serialize(value, gen, provider); typeSer.writeTypeSuffixForScalar(value, gen);
and implementations for type serialized as JSON Arrays or Objects would differ slightly, asSTART-ARRAY/END-ARRAYandSTART-OBJECT/END-OBJECTpairs need to be properly handled with respect to serializing of contents.- Overrides:
serializeWithTypein classJsonSerializer<Object>- Parameters:
bean- Value to serialize; can not be null.gen- Generator used to output resulting Json contentctxt- Provider that can be used to get serializers for serializing Objects value contains, if any.typeSer0- Type serializer to use for including type information- Throws:
IOException
-
getSchema
@Deprecated public JsonNode getSchema(SerializerProvider ctxt, Type typeHint) throws JsonMappingException Deprecated.Since 2.15Description copied from class:StdSerializerDefault implementation simply claims type is "string"; usually overriden by custom serializers.- Specified by:
getSchemain interfaceSchemaAware- Overrides:
getSchemain classStdSerializer<Object>- Parameters:
ctxt- The serializer provider.typeHint- A hint about the type.- Returns:
- Json-schema for this serializer.
- Throws:
JsonMappingException
-
acceptJsonFormatVisitor
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException Description copied from class:StdSerializerDefault implementation specifies no format. This behavior is usually overriden by custom serializers.- Specified by:
acceptJsonFormatVisitorin interfaceJsonFormatVisitable- Overrides:
acceptJsonFormatVisitorin classStdSerializer<Object>- Parameters:
typeHint- Type of element (entity like property) being visited- Throws:
JsonMappingException
-
_acceptJsonFormatVisitorForEnum
protected boolean _acceptJsonFormatVisitorForEnum(JsonFormatVisitorWrapper visitor, JavaType typeHint, Class<?> enumType) throws JsonMappingException Overridable helper method used for special case handling of schema information for Enums.- Returns:
- True if method handled callbacks; false if not; in latter case caller will send default callbacks
- Throws:
JsonMappingException- Since:
- 2.6
-
isNaturalTypeWithStdHandling
-
_findDynamicSerializer
protected JsonSerializer<Object> _findDynamicSerializer(SerializerProvider ctxt, Class<?> valueClass) throws JsonMappingException - Throws:
JsonMappingException
-
_withIgnoreProperties
protected static JsonSerializer<Object> _withIgnoreProperties(JsonSerializer<?> ser, Set<String> ignoredProperties) Internal helper that configures the providedserto ignore properties specified byJsonIgnoreProperties.- Parameters:
ser- Serializer to be configured- Returns:
- Configured serializer with specified properties ignored
- Since:
- 2.16
-
toString
-