-
Updated
Jul 14, 2022 - Java
jackson
Here are 700 public repositories matching this topic...
-
Updated
May 26, 2022
-
Updated
Jul 15, 2022 - Java
-
Updated
Jul 13, 2022 - Java
-
Updated
Jul 13, 2022 - Kotlin
We're seeing inconsistencies between JS's and Jackson's representation of non-printable characters embedded in JSON strings. Where JS sends \u001b, once it goes through Jackson the field holds the string \u001B, causing all kind of hashing issues.
-
Updated
May 26, 2022 - Kotlin
-
Updated
Jul 12, 2022 - Scala
-
Updated
Jul 13, 2022 - Kotlin
With a file
---
description: 400 - The request was malformed or missing a required field.
content:
application/json:
schema: { $ref: '#definitions/BadRequestResponse' }
definitions:
BadRequestResponse:
description: Optional information about how the request was bad.
type: object
properties:
fieldName:
description: >-
If this errorTools like jq are focused predominantly on their use on the command line, but have a lot of limitations (and bugs!) that jslt doesn't. This is a compliment to jslt btw. :)
To properly replace the usage of jq with jslt, we would like to be able to have some more flexibility with the ways of specifying the input parameters as well as the output.
- Specifying JSON input or JSLT transform input
Add module-info.java
-
Updated
Jun 20, 2018 - Java
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
Jun 2, 2022 - Clojure
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
Mar 22, 2022 - Java
-
Updated
Jun 21, 2022 - JavaScript
-
Updated
Jul 14, 2022 - Java
-
Updated
Jun 24, 2022 - Java
-
Updated
May 26, 2022 - 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: offshoot of #3455 -- read for background)
It looks like JDK's
HttpURLConnectionhas unfortunate handling of some error cases, leading to leakage of not-fully-closed HTTP connections under some error conditions. See #3455 for details.It seems like we might be able to handle some of those cases, specially
readValue()variants ofObjectMapper/ObjectReaderby using something li