Jackson Databind

Jackson Databind is a core module of the Jackson library that provides data-binding functionality for converting Java objects to JSON and vice versa.

Maven Dependency


  <dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.15.2</version>
  </dependency>
  

Compatibility of Jackson Databind with Java & Spring Versions

VersionMinimum Java VersionSpring Framework VersionSpring Boot Version
2.13.3 85.3.122.5.5
2.14.1 85.3.202.7.10
2.15.2 Latest85.3.272.7.13

1. Unexpected end-of-input: expected close marker for Object

Malformed JSON structure, such as missing quotes or brackets.

Code Snippet


    import com.fasterxml.jackson.databind.ObjectMapper;

    public class JacksonExample {
        public static void main(String[] args) throws Exception {
            String invalidJson = "{ "name": "John", "age": 30 "; // Missing closing brace
            ObjectMapper mapper = new ObjectMapper();
            mapper.readTree(invalidJson); // Throws exception
        }
    }
    
  

Stack Trace

com.fasterxml.jackson.core.JsonParseException: Unexpected end-of-input: expected close marker for Object (from [Source: (String)"{"key": "value""; line: 1, column: 1]) at [Source: (String)"{"key": "value""; line: 1, column: 17]

2. com.fasterxml.jackson.databind.exc.DatabindException

General-purpose exception wrapping other issues during serialization/deserialization

Code Snippet


    import com.fasterxml.jackson.databind.ObjectMapper;

    public class JacksonExample {
        static class CircularReference {
            public CircularReference ref;
    
            public CircularReference(CircularReference ref) {
                this.ref = ref;
            }
        }
    
        public static void main(String[] args) throws Exception {
            CircularReference obj = new CircularReference(null);
            obj.ref = obj; // Circular reference
            ObjectMapper mapper = new ObjectMapper();
            mapper.writeValueAsString(obj); // Throws exception
        }
    }
    
  

Stack Trace

com.fasterxml.jackson.databind.exc.DatabindException: Direct self-reference leading to cycle

Vulnerabilities:

IDDescriptionFixed in Version
CVE-2023-35116Denial of Service (DoS) when processing deeply nested JSON structures.2.15.2
CVE-2022-42003Remote code execution vulnerability in certain deserialization scenarios.2.14.1

Popular Dependencies Using This:

Manifest Info

Manifest-Version: 1.0
  Built-By: FasterXML
  Specification-Title: jackson-databind
  Specification-Version: 2.15.2
  

References

View Documentation
© 2024 MavenMQ.com. All Rights Reserved.     PrivacyPolicy      SiteMap      Facebook