jackson-databind icon indicating copy to clipboard operation
jackson-databind copied to clipboard

General data-binding package for Jackson (2.x): works on streaming API (core) implementation(s)

Results 238 jackson-databind issues
Sort by recently updated
recently updated
newest added

Not sure about this implementation. Some feedback would be appreciated until I have time to work on it again soon.

### Problem I want to support JSON Patch Merge on a JSON REST API when using the `PUT` HTTP Method with a `Content-Type` of `application/merge-patch+json`. The current usage of `ObjectMapper.readerForUpdating`...

most-wanted

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. I've recently came across this problem where the REST api...

to-evaluate

This is a proposal for a new serialization feature, `SerializationFeature.STRICT_NUMBERS`. This feature would be disabled by default. With this feature enabled, the following actions would throw `JsonProcessingException`: 1. Attempting to...

### I got following message on running my service. **I am using Java 11 oracle version with spring boot version 2.7.3** WARNING: An illegal reflective access operation has occurred WARNING:...

need-test-case

**Moved over from: https://github.com/FasterXML/jackson-future-ideas/issues/10** There are many situations where creating a simple mixin for a class is not feasable and creating a (de)serializer is a lot of effort. It would...

**Is your feature request related to a problem? Please describe.** ``` String collectionJson = "[ {\"school" : \"xxx\", ... }, {\"student" : \"yyy\", ...} ]"; List javaTypeList = new ArrayList();...

JsonUnwrapped does not work with JsonNode. Using `jackson-databind:jar:2.13.2.1`. ```java import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; public abstract class Widget { private static ObjectMapper mapper = new ObjectMapper(); @JsonProperty...

(note: follow up to #3394) So, it should be possible to also use `ObjectNode` valued (and perhaps nominal type of `JsonNode`? But how to handle non-ObjectNode values) instead of `Map`-valued...