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/deser/impl/InnerClassProperty.java

    package com.fasterxml.jackson.databind.deser.impl;
    
    import java.io.IOException;
    import java.lang.reflect.Constructor;
    
    import com.fasterxml.jackson.core.*;
    
    import com.fasterxml.jackson.databind.*;
    import com.fasterxml.jackson.databind.deser.SettableBeanProperty;
    import com.fasterxml.jackson.databind.introspect.*;
    import com.fasterxml.jackson.databind.util.ClassUtil;
    
    /**
     * This sub-class is used to handle special case of value being a
     * non-static inner class. If so, we will have to use a special
     * alternative for default constructor; but otherwise can delegate
     * to regular implementation.
     */
    public final class InnerClassProperty
        extends SettableBeanProperty.Delegating
    {
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor used when deserializing this property.
         * Transient since there is no need to persist; only needed during
         * construction of objects.
         */
        final protected transient Constructor<?> _creator;
        
        /**
         * Serializable version of single-arg constructor we use for value instantiation.
         */
        protected AnnotatedConstructor _annotated;
    
        public InnerClassProperty(SettableBeanProperty delegate,
                Constructor<?> ctor)
        {
            super(delegate);
            _creator = ctor;
        }
    
        /**
         * Constructor used with JDK Serialization; needed to handle transient
         * Constructor, wrap/unwrap in/out-of Annotated variant.
         */
        protected InnerClassProperty(SettableBeanProperty src, AnnotatedConstructor ann)
        {
            super(src);
            _annotated = ann;
            _creator = (_annotated == null) ? null : _annotated.getAnnotated();
            if (_creator == null) {
                throw new IllegalArgumentException("Missing constructor (broken JDK (de)serialization?)");
            }
        }
    
        @Override
        protected SettableBeanProperty withDelegate(SettableBeanProperty d) {
            if (d == this.delegate) {
                return this;
            }
            return new InnerClassProperty(d, _creator);
        }
    
        /*
        /**********************************************************
        /* Deserialization methods
        /**********************************************************
         */
    
        @Override
        public void deserializeAndSet(JsonParser p, DeserializationContext ctxt, Object bean)
            throws IOException
        {
            JsonToken t = p.currentToken();
            Object value;
            if (t == JsonToken.VALUE_NULL) {
                value = _valueDeserializer.getNullValue(ctxt);
            } else if (_valueTypeDeserializer != null) {
                value = _valueDeserializer.deserializeWithType(p, ctxt, _valueTypeDeserializer);
            } else  { // the usual case
                try {
                    value = _creator.newInstance(bean);
                } catch (Exception e) {
                    ClassUtil.unwrapAndThrowAsIAE(e, String.format(
    "Failed to instantiate class %s, problem: %s",
    _creator.getDeclaringClass().getName(), e.getMessage()));
                    value = null;
                }
                _valueDeserializer.deserialize(p, ctxt, value);
            }
            set(bean, value);
        }
    
        @Override
        public Object deserializeSetAndReturn(JsonParser p, DeserializationContext ctxt, Object instance)
            throws IOException
        {
            return setAndReturn(instance, deserialize(p, ctxt));
        }
    
    // these are fine with defaults
    //    public final void set(Object instance, Object value) throws IOException { }
    //    public Object setAndReturn(Object instance, Object value) throws IOException { }
    
        /*
        /**********************************************************
        /* JDK serialization handling
        /**********************************************************
         */
    
        // When reading things back, 
        Object readResolve() {
            return new InnerClassProperty(this, _annotated);
        }
    
        Object writeReplace() {
            // need to construct a fake instance to support serialization
            if (_annotated == null) {
                return new InnerClassProperty(this, new AnnotatedConstructor(null, _creator, null, null));
            }
            return this;
        }
    }
    

    com/fasterxml/jackson/databind/deser/impl/InnerClassProperty.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, 82311👍, 0💬