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/ser/AnyGetterWriter.java

    package com.fasterxml.jackson.databind.ser;
    
    import java.util.Map;
    
    import com.fasterxml.jackson.core.*;
    import com.fasterxml.jackson.databind.*;
    import com.fasterxml.jackson.databind.introspect.AnnotatedMember;
    import com.fasterxml.jackson.databind.ser.std.MapSerializer;
    
    /**
     * Class similar to {@link BeanPropertyWriter}, but that will be used
     * for serializing {@link com.fasterxml.jackson.annotation.JsonAnyGetter} annotated
     * (Map) properties
     */
    public class AnyGetterWriter
    {
        protected final BeanProperty _property;
    
        /**
         * Method (or field) that represents the "any getter"
         */
        protected final AnnotatedMember _accessor;
    
        protected JsonSerializer<Object> _serializer;
    
        protected MapSerializer _mapSerializer;
    
        @SuppressWarnings("unchecked")
        public AnyGetterWriter(BeanProperty property,
                AnnotatedMember accessor, JsonSerializer<?> serializer)
        {
            _accessor = accessor;
            _property = property;
            _serializer = (JsonSerializer<Object>) serializer;
            if (serializer instanceof MapSerializer) {
                _mapSerializer = (MapSerializer) serializer;
            }
        }
    
        /**
         * @since 2.8.3
         */
        public void fixAccess(SerializationConfig config) {
            _accessor.fixAccess(
                    config.isEnabled(MapperFeature.OVERRIDE_PUBLIC_ACCESS_MODIFIERS));
        }
    
        public void getAndSerialize(Object bean, JsonGenerator gen, SerializerProvider provider)
            throws Exception
        {
            Object value = _accessor.getValue(bean);
            if (value == null) {
                return;
            }
            if (!(value instanceof Map<?,?>)) {
                provider.reportBadDefinition(_property.getType(), String.format(
                        "Value returned by 'any-getter' %s() not java.util.Map but %s",
                        _accessor.getName(), value.getClass().getName()));
            }
            // 23-Feb-2015, tatu: Nasty, but has to do (for now)
            if (_mapSerializer != null) {
                _mapSerializer.serializeWithoutTypeInfo((Map<?,?>) value, gen, provider);
                return;
            }
            _serializer.serialize(value, gen, provider);
        }
    
        /**
         * @since 2.3
         */
        public void getAndFilter(Object bean, JsonGenerator gen, SerializerProvider provider,
                PropertyFilter filter)
            throws Exception
        {
            Object value = _accessor.getValue(bean);
            if (value == null) {
                return;
            }
            if (!(value instanceof Map<?,?>)) {
                provider.reportBadDefinition(_property.getType(),
                        String.format("Value returned by 'any-getter' (%s()) not java.util.Map but %s",
                        _accessor.getName(), value.getClass().getName()));
            }
            // 19-Oct-2014, tatu: Should we try to support @JsonInclude options here?
            if (_mapSerializer != null) {
                _mapSerializer.serializeFilteredAnyProperties(provider, gen, bean,(Map<?,?>) value,
                        filter, null);
                return;
            }
            // ... not sure how custom handler would do it
            _serializer.serialize(value, gen, provider);
        }
    
        // Note: NOT part of ResolvableSerializer...
        @SuppressWarnings("unchecked")
        public void resolve(SerializerProvider provider) throws JsonMappingException
        {
            // 05-Sep-2013, tatu: I _think_ this can be considered a primary property...
            if (_serializer instanceof ContextualSerializer) {
                JsonSerializer<?> ser = provider.handlePrimaryContextualization(_serializer, _property);
                _serializer = (JsonSerializer<Object>) ser;
                if (ser instanceof MapSerializer) {
                    _mapSerializer = (MapSerializer) ser;
                }
            }
        }
    }
    

    com/fasterxml/jackson/databind/ser/AnyGetterWriter.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, 81314👍, 0💬