Jackson Data Binding Source Code

Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java".

  • Jackson Data Binding module allows you to converts JSON to and from POJO (Plain Old Java Object) using property accessor or using annotations.
  • Jackson Databind Source Code files are provided in the source packge (jackson-databind-2.14.0-sources.jar). You can download it at Jackson Maven Website.

    You can also browse Jackson Databind Source Code below:

    ✍: FYIcenter.com

    com/fasterxml/jackson/databind/jsontype/impl/AsExternalTypeSerializer.java

    package com.fasterxml.jackson.databind.jsontype.impl;
    
    import java.io.IOException;
    
    import com.fasterxml.jackson.annotation.JsonTypeInfo.As;
    import com.fasterxml.jackson.core.*;
    import com.fasterxml.jackson.databind.BeanProperty;
    import com.fasterxml.jackson.databind.jsontype.TypeIdResolver;
    
    /**
     * Type serializer that preferably embeds type information as an "external"
     * type property; embedded in enclosing JSON object.
     * Note that this serializer should only be used when value is being output
     * at JSON Object context; otherwise it cannot work reliably, and will have
     * to revert operation similar to {@link AsPropertyTypeSerializer}.
     *<p>
     * Note that implementation of serialization is bit cumbersome as we must
     * serialized external type id AFTER object; this because callback only
     * occurs after field name has been written.
     *<p>
     * Also note that this type of type id inclusion will NOT try to make use
     * of native Type Ids, even if those exist.
     */
    public class AsExternalTypeSerializer extends TypeSerializerBase
    {
        protected final String _typePropertyName;
    
        public AsExternalTypeSerializer(TypeIdResolver idRes, BeanProperty property, String propName) {
            super(idRes, property);
            _typePropertyName = propName;
        }
    
        @Override
        public AsExternalTypeSerializer forProperty(BeanProperty prop) {
            return (_property == prop) ? this : new AsExternalTypeSerializer(_idResolver, prop, _typePropertyName);
        }
    
        @Override
        public String getPropertyName() { return _typePropertyName; }
    
        @Override
        public As getTypeInclusion() { return As.EXTERNAL_PROPERTY; }
    
        /*
        /**********************************************************
        /* Helper methods
        /**********************************************************
         */
    
        // nothing to wrap it with:
        protected final void _writeScalarPrefix(Object value, JsonGenerator g) throws IOException { }
    
        protected final void _writeObjectPrefix(Object value, JsonGenerator g) throws IOException {
            g.writeStartObject();
        }
    
        protected final void _writeArrayPrefix(Object value, JsonGenerator g) throws IOException {
            g.writeStartArray();
        }
       
        protected final void _writeScalarSuffix(Object value, JsonGenerator g, String typeId) throws IOException {
            if (typeId != null) {
                g.writeStringField(_typePropertyName, typeId);
            }
        }
       
        protected final void _writeObjectSuffix(Object value, JsonGenerator g, String typeId) throws IOException {
            g.writeEndObject();
            if (typeId != null) {
                g.writeStringField(_typePropertyName, typeId);
            }
        }
    
        protected final void _writeArraySuffix(Object value, JsonGenerator g, String typeId) throws IOException {
            g.writeEndArray();
            if (typeId != null) {
                g.writeStringField(_typePropertyName, typeId);
            }
        }
    }
    

    com/fasterxml/jackson/databind/jsontype/impl/AsExternalTypeSerializer.java

     

    Or download all of them as a single archive file:

    File name: jackson-databind-2.14.0-sources.jar
    File size: 1187952 bytes
    Release date: 2022-11-05
    Download 
    

     

    Jackson Annotations Source Code

    Download and Install Jackson Binary Package

    Downloading and Reviewing jackson-*.jar

    ⇑⇑ Jackson - Java JSON library

    2022-03-29, 81166👍, 0💬