jackson-future-ideas icon indicating copy to clipboard operation
jackson-future-ideas copied to clipboard

Repository for SOLE PURPOSE of issue tracker and Wiki for NEW IDEAS. Please: NO BUG REPORTS.

Results 36 jackson-future-ideas issues
Sort by recently updated
recently updated
newest added

``` public class Member{ private String id; @JsonProperty("User.name") private String name; @JsonProperty("User.age") private Integer age; } ``` I expect the serialization is ``` { "id":null, "User":{ "name":null, "age": null }...

It would be nice if we could generate user-friendly exceptions from `JacksonMappingException`s. Here is an example exception: ``` com.fasterxml.jackson.module.kotlin.MissingKotlinParameterException: Instantiation of [simple type, class io.rakam.ui.service.recipe.Recipe$ExportDashboard] value failed for JSON property...

Currently there are no libraries for xlsx to POJO mapping. jackson-dataformat-csv exists but sometime we need xlsx / xls. I would like to contribute on this module if possible.

I would like a variant of databind that doesn't support the "dynamic typing" anti-feature. Every so often a new class gets added to the "default typing" blacklist. Whenever this happens,...

I've created a little 'sensitive data hiding' class that's basically a wrapper class with a custom` toString()` method. To make this work with existing classes I registered a custom serialiser...

I'd love to have a separate mapping feature disable to coercion of numbers to booleans without disabling a bunch of other scalar features. If someone supplies a numeric string like...

It would be great that Jackson can provide a feature to validate the JSON payload against the JSON schema, like the fge lib can do.

When I use @JsonIdentityInfo recursive element is presented as simple property like this: `{ "id": "1" "order": { "id": "1", "items": [ "1", { "id": "2", "order": "1" }, {...

(note: https://github.com/FasterXML/jackson-databind/issues/2020 is the background) Tuple types from https://www.javatuples.org/ do not work out of the box, both due to immutability which requires builder-based construction (or use of "mutant factory" methods),...

(for background see https://github.com/FasterXML/jackson-databind/issues/1387) As per title, would be nice to have a datatype module to support handling of CDI proxy classes. /cc @ljnelson