-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
read-value fails on empty string #31
Comments
Ahh, I see, empty string is not valid JSON, so probably |
Yes, it's a property of Jackson. There are lot of features that can be set, but with a quick test, at least this doesn't work: (def allow-nil-object-mapper
(doto (j/object-mapper)
(.enable com.fasterxml.jackson.databind.DeserializationFeature/ACCEPT_EMPTY_STRING_AS_NULL_OBJECT)))
(j/read-value "" allow-nil-object-mapper)
; Execution error (MismatchedInputException) at com.fasterxml.jackson.databind.exc.MismatchedInputException/from (MismatchedInputException.java:59).
; No content to map due to end-of-input
; at [Source: (String)""; line: 1, column: 0] Would also like to know if there is existing thing for this in Jackson or would it require custom Java/Clojure code in jsonista. |
@ikitommi also relevant for me |
PR welcome to add a optional option to enable this, e.g. JSON.parse("")
// VM154:1 Uncaught SyntaxError: Unexpected end of JSON input
// at JSON.parse (<anonymous>)
// at <anonymous>:1:6 |
@ikitommi agree, however, as it is pointed out earlier, the option to disable this doesn't work
|
We can add our own options if Jackson doesn't support this. I would start by asking how to do this on the https://github.com/FasterXML/jackson repo how to do this. |
Is that intentional? Cheshire returns
nil
for such case. Maybe that can be tuned withobject-mapper
? 🤔The text was updated successfully, but these errors were encountered: