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

I am aware of the ability to configure Jackson to serialize BigInteger as a JSON String (https://github.com/FasterXML/jackson-databind/issues/1911) but I believe that it should be the default behaviour, with serialisation as...

### Search before asking - [x] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug I've discovered that Jackson serializes Java `BigDecimal` values as JSON numbers...

to-evaluate

### Is your feature request related to a problem? Please describe. Currently, it isn't possible to use records with JsonManagedReference/JsonBackReference as records do not have a mutator available. Would it...

Record

A long-standing problem (I'll list a few existing issues outlining these) is that if the logical property (and matching field): 1. Starts with capitalized letter (like `"Phone"`) OR 2. Has...

most-wanted
property-iPhone

### Search before asking - [x] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug Since version 2.18.4 (probably since https://github.com/FasterXML/jackson-databind/issues/4628) behavior of annotation on methods...

property-discovery

See FasterXML/jackson#278 for context I would like to include a bean into a class multiple times. For serialization, this bean should prefix its fields in a specific way so that...

### Search before asking - [x] I searched in the [issues](https://github.com/FasterXML/jackson-databind/issues) and found nothing similar. ### Describe the bug The code below yields an exception: ``` Exception in thread "main"...

has-failing-test
2.19

Hi, I was implementing a diffrent algorithm for AsPropertyTypeDeserializer and an issue with the following line raised: https://github.com/FasterXML/jackson-databind/blob/171fb418c4afe50f7aad6235cd5f2c53282a52b2/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/AsPropertyTypeDeserializer.java#L162 The issue seems to be related with the fact that JsonParserSequence is...

need-test-case
polymorphic-deduction

### Is your feature request related to a problem? Please describe. I think I'm missing something trivial but I would like to stream objects to a `PreparedStatement` using `PreparedStatement.setCharacterStream(int parameterIndex,...