-
Updated
Apr 11, 2021 - Java
jackson
Here are 591 public repositories matching this topic...
-
Updated
Mar 7, 2021
-
Updated
Apr 6, 2021 - Java
-
Updated
Mar 26, 2021 - Java
-
Updated
Feb 14, 2021 - Kotlin
JsonGenerator#writeTypePrefix writes an id "null" and cannot be set up to skip the id completely
I have a TypeIdResolver implementation which works around generic type erasure to allow marshaling/unmarshaling of a parameterized type. This works fine when the underlying parameterized type maps directly onto a JSON type e.g. java.lang.Double but when it's a type that needs to be converted to a JSON string e.g. java.time.LocalDate then my TypeIdResolver is asked for a type and I can eit
-
Updated
Apr 6, 2021 - Kotlin
-
Updated
Apr 1, 2021 - Java
-
Updated
Apr 11, 2021 - Scala
Hi, could you please provide some kind of mechanism how to say guardrail to follow openApi specification when generating code from swagger? Specifically I am talking about query parameters with array type (but there could be more differences), which are handled as multi (userId=1,userId=2) insted of default comma separated values (userIds=1,2). According to specification if there is no
-
Updated
Jun 20, 2018 - Java
-
Updated
Apr 10, 2021 - Kotlin
InstantSerializer doesn't respect any format-related settings without replacing serializer instance
InstantSerializer doesn't respect any of the following standard Jackson configuration settings:
ObjectMapper#setDateFormat
@JsonFormat(pattern) on an Instant
others?
Instead, I have to create and manually override the default InstantSerializer registered by the module.
This isn't well documented and is definitely confusing when using the library.
Can we make InstantSerializer
-
Updated
Jul 1, 2020 - JavaScript
-
Updated
Mar 5, 2021 - Java
It would be nice to have a CSV feature similar to JSON feature JsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS. Enabling of the feature by mapper.enable(JsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS) doesn't work for CSV.
I want to write an object of this class:
data class TestData(
val integer: Int,
val float: Float
}
as
"1","1.234"
not as
1,1.234
-
Updated
Apr 9, 2021 - Java
-
Updated
Sep 11, 2020 - Java
-
Updated
Mar 30, 2021 - Java
Improve this page
Add a description, image, and links to the jackson topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jackson topic, visit your repo's landing page and select "manage topics."
(note: follow-up to #2291 in which basic example added on README)
So: beyond initial simple Builder usage shown on README it would be nice to have more in-depth usage example(s).
This could be a wiki page on this repo or
jackson-docs, or blog post to link to.For purposes of Hacktoberfest whoever works on this could do PR for change in README to link to whatever resource gets added.