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

### Search before asking - [X] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug Sorry, I struggled to find a good title. So basically, Jackson...

to-evaluate

I'm using spring-mvc for a `restful` service. By adding the dependency, my rest controllers automatically `generate json` from my `response entities`. **Dependency** jackson = '2.9.0' compile "com.fasterxml.jackson.core:jackson-databind:$jackson" **Objects** @Getter @Setter...

has-failing-test

### Search before asking - [X] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug Hello everyone! There is a curious issue I want to share...

to-evaluate

(related to earlier issue #3538) ### Describe the bug If the field name is `pId`, the JSON data is not mapped to an object using `@RequestBody` annotation. Lombok's `@Getter`, `@Setter`...

need-test-case

The JsonPropertyOrder annotation does only sort the explicitly defined properties of an object, additional properties which may be stored using the JsonAnySetter/JsonAnyGetter annotations are not taken into account and just...

3.x

(For after **Property Introspection Rewrite**) This PR resolves... 1.. #4388 2.. part of #2592 - AnyGetter with JsonInclude + JsonFilter combo ### Modifications This PR basically... - Starts to handle...

Jackson 2.4.4 is able to successfully deserialize forward references, but it fails to do so if the constructor contains a `@JacksonInject` parameter.

has-failing-test

(note: migrated from https://github.com/FasterXML/jackson-core/issues/154 by @benson-basis) --- I was surprised to learn that Jackson will combine `@JsonCreator` with patching properties. Even, in particular, protected final properties. When I wrote a...

Currently it is possible to specify "defaultImpl" for `@JsonTypeInfo`, indicating type to use in case Type Id is not available (or is invalid or unmappable). But this default type is...

Currently, it does not. It applies when reading, but not writing, in this case. I would settle gladly for annotating the any-getter method rather than the class for this case.