public class JsonValueSerializer extends StdSerializer<java.lang.Object> implements ContextualSerializer, JsonFormatVisitable, SchemaAware
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(com.fasterxml.jackson.databind.SerializerProvider, com.fasterxml.jackson.databind.BeanProperty) method, and NOT from constructor;
otherwise we could end up with an infinite loop.
JsonSerializer.None| Constructor and Description |
|---|
JsonValueSerializer(AnnotatedMember accessor,
JsonSerializer<?> ser) |
JsonValueSerializer(JsonValueSerializer src,
BeanProperty property,
JsonSerializer<?> ser,
boolean forceTypeInfo) |
| Modifier and Type | Method and Description |
|---|---|
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonSerializer<?> |
createContextual(SerializerProvider provider,
BeanProperty property)
We can try to find the actual serializer for value, if we can
statically figure out what the result type must be.
|
JsonNode |
getSchema(SerializerProvider provider,
java.lang.reflect.Type typeHint)
Default implementation simply claims type is "string"; usually
overriden by custom serializers.
|
void |
serialize(java.lang.Object bean,
JsonGenerator gen,
SerializerProvider prov)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(java.lang.Object bean,
JsonGenerator gen,
SerializerProvider provider,
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.
|
java.lang.String |
toString() |
JsonValueSerializer |
withResolved(BeanProperty property,
JsonSerializer<?> ser,
boolean forceTypeInfo) |
getSchema, handledType, wrapAndThrow, wrapAndThrowgetDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterIdequals, getClass, hashCode, notify, notifyAll, wait, wait, waitgetSchemapublic JsonValueSerializer(AnnotatedMember accessor, JsonSerializer<?> ser)
ser - Explicit serializer to use, if caller knows it (which
occurs if and only if the "value method" was annotated with
JsonSerialize.using()), otherwise
nullpublic JsonValueSerializer(JsonValueSerializer src, BeanProperty property, JsonSerializer<?> ser, boolean forceTypeInfo)
public JsonValueSerializer withResolved(BeanProperty property, JsonSerializer<?> ser, boolean forceTypeInfo)
public JsonSerializer<?> createContextual(SerializerProvider provider, BeanProperty property) throws JsonMappingException
createContextual in interface ContextualSerializerprovider - 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)JsonMappingExceptionpublic void serialize(java.lang.Object bean,
JsonGenerator gen,
SerializerProvider prov)
throws java.io.IOException
JsonSerializerserialize in class StdSerializer<java.lang.Object>bean - Value to serialize; can not be null.gen - Generator used to output resulting Json contentprov - Provider that can be used to get serializers for
serializing Objects value contains, if any.java.io.IOExceptionpublic void serializeWithType(java.lang.Object bean,
JsonGenerator gen,
SerializerProvider provider,
TypeSerializer typeSer0)
throws java.io.IOException
JsonSerializer
Default implementation will throw UnsupportedOperationException
to 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, as
START-ARRAY/END-ARRAY and
START-OBJECT/END-OBJECT pairs
need to be properly handled with respect to serializing of contents.serializeWithType in class JsonSerializer<java.lang.Object>bean - Value to serialize; can not be null.gen - Generator used to output resulting Json contentprovider - Provider that can be used to get serializers for
serializing Objects value contains, if any.typeSer0 - Type serializer to use for including type informationjava.io.IOExceptionpublic JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint) throws JsonMappingException
StdSerializergetSchema in interface SchemaAwaregetSchema in class StdSerializer<java.lang.Object>provider - The serializer provider.typeHint - A hint about the type.JsonMappingExceptionpublic void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializeracceptJsonFormatVisitor in interface JsonFormatVisitableacceptJsonFormatVisitor in class StdSerializer<java.lang.Object>typeHint - Type of element (entity like property) being visitedJsonMappingExceptionpublic java.lang.String toString()
toString in class java.lang.Object"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"