-
Notifications
You must be signed in to change notification settings - Fork 18
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
Ability to serialize / deserialize boolean properties as numeric values in json #911
Comments
probably doable yeah |
I don't have a feel for how big of an undertaking this would be. If this seems like something that would be a good starter task, and someone is willing to point me in the right direction, I'd be willing to take a stab at a solution. |
|
The other solution would be detecting it in the compilation time and and setting a custom serializer/deserializer |
that would likely be more efficient yes |
Feature description
I have a boolean property that I would like to serialize/deserialize to json as a numeric value
0
or1
. I believe this typically could be done by annotating the property with@JsonFormat(shape=JsonFormat.Shape.Number)
. As documented micronaut doesn't not support theshape
property forJsonFormat
and attempts to use it result in the following error:Are there any plans to support this?
The text was updated successfully, but these errors were encountered: