Skip to content
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

To write null String as "", write null Collection or array as [] #1815

Open
bungder opened this issue Nov 6, 2017 · 5 comments
Open

To write null String as "", write null Collection or array as [] #1815

bungder opened this issue Nov 6, 2017 · 5 comments

Comments

@bungder
Copy link

bungder commented Nov 6, 2017

Hi Jackson community!

Our front-end colleague do not want to get null from back-end, and I tried to overwrite some kinds of null as default values. Here are 3 kinds of them: String, Collection and array. And I have tried some approaches, like setNullSerializer, overwrite CollectionSerializer, but not fits well.

Another way to achieve this is using reflection to replace a default value to null properties before serialization, but I don't prefer this because it would reduce server performance.

It seems to be a common requirement. So it would be great if jackson supports this feature.

@cowtowncoder
Copy link
Member

I am not sure how this could be achieved in a way compatible with existing configuration operations.
I think that this can really split in two parts because String handling (or in general, scalar types) is quite separate from structured/array serialization.

Your best choice currently is probably use of @JsonSerialize(nullsUsing = MyNullSerializer) -- not necessarily directly, but by overriding method findNullSerializer(Annotated) in JacksonAnnotationIntrospector (or just custom AnnotationIntrospector), applying on case of AnnotatedClass that matches types you are interested in.

I will keep this open in case someone has good ideas on how this should be exposed via API since that is the big challenge.

@cowtowncoder cowtowncoder added the 3.x Issues to be only tackled for Jackson 3.x, not 2.x label Nov 6, 2017
@rfoltyns
Copy link

rfoltyns commented Nov 15, 2017

@bungder have you tried objectMapper.setSerializationInclusion(JsonInclude.Include.NON_DEFAULT)? or JsonInclude.Include.NON_EMPTY?

@bungder
Copy link
Author

bungder commented Nov 25, 2017

@rfoltyns Yes, but it just made null properties disappeared

@AarjavP
Copy link

AarjavP commented Dec 11, 2019

Can there be a serialization flag similar to the ones here: https://github.com/FasterXML/jackson-databind/wiki/Serialization-features#datatype-specific-serialization
perhaps WRITE_NULL_COLLECTION_AS_EMPTY_ARRAY

As per the annotations, deserialization already has this pretty nice annotation / property: @JsonSetter(nulls=...)
maybe we can have something similar for @JsonGetter?

Are these all bigger API changes that require 3.x?

@cowtowncoder
Copy link
Member

I do not think adding new SerializationFeatures is a good way to handle various transmutations unfortunately. But I do not have good story on alternative ways.
I will note that there is desire to configure serialization of nulls, similar to mechanism mentioned above.

Also, for specific case of JsonNode serialization, I do have plans on introducing simple JsonNodeFeature which may cover output for Tree Model:

https://github.com/FasterXML/jackson-future-ideas/wiki/JSTEP-3

@cowtowncoder cowtowncoder removed the 3.x Issues to be only tackled for Jackson 3.x, not 2.x label Dec 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants