Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork233
Serialize empty tags to actual json array/object#642
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:2.17
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
cowtowncoder commentedMar 2, 2024
Yeah I am not sure I'm inclined to add support for this. Jackson, in general, tries to steer clear of 2 general areas:
Obviously there's some amount of functionality that overlaps here, but in general complexity of structural transformations is such, for streaming/incremental reading/writing that it seems best left out. |
Hello@cowtowncoder , I think it would be nice to serialize empty tag into actual array/objects (in some cases), not text value, in particular, as you can see from the added test case
<name><first/><last>[]</last></name>will be serialized as{"first":[],"last":"[]"}when using JsonNode, the empty tag first is serialized as an empty json array, not a text value.But I feel like that mysolution is a bit hacky, do you have any hint?
Once#640 is merged I'll rebase this one.