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 208 jackson-databind issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When using `objectMapper.activateDefaultTyping` and `@JsonDeserialize(converter = ...)` on a Date field, Jackson perhaps incorrectly serializes a Long as `["java.lang.Long",1234567890000]` (I would have expected `1234567890000`), and throws an...

I am using Jackson 2.12.3 and it seems that Jackson will sometimes take preference for a private constructor over a public static factory method that is annotated with `@JsonCreator`. This...

**Describe the bug** Before 2.12.x `DeserializationProblemHandler::handleUnexpectedToken` is invoked when trying to deserialize something with a structurally incompatible type, like deserializing a string from a `START_OBJECT`. In 2.12.x this no longer...

### Describe your Issue (note: inspired by #4109) As per #2715 there is a nasty race condition possibility for anyone using constants like `PropertyNamingStrategy.LOWER_CAMEL_CASE` or classes themselves like `PropertyNamingStrategy.SnakeCaseStrategy.class`; and...

2.17

### Describe your Issue Currently `@JsonPropertyOrder` can only be used with regular (or "true") properties, and it will have no effect on: 1. "any properties" specified with `@JsonAnyGetter` 2. "unwrapped...

2.17

### Is your feature request related to a problem? Please describe. The current means (or at least the means that I used) of overriding the serializer on a single property...

to-evaluate

For the following setup: ```java public interface A {} public interface B {} public class Phone { private static Map attrs = new HashMap(); static { attrs.put("displaySize", "5.8 in"); }...

3.x

I was asked to file this issue against `Jackson-Databind` based on the discussion on the [Google-Forum](https://groups.google.com/g/jackson-user/c/3nEe6Fopk64/m/vDcllBmSCAAJ?utm_medium=email&utm_source=footer). Basically, the problem is that when `Jackson Custom Serializer` is called against 2 fields...

### Search before asking - [X] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug At least changing the order doesn't work via `BeanDeserializerModifier::updateProperties`, maybe actions...

has-failing-test
2.17