You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Encoder should map final fields or even log reason of skip fields.
I'm using in project immutable objects supported by lombok @value.
I spent a lot lot of time to debug why I have empty body using "consumes = APPLICATION_FORM_URLENCODED_VALUE".
All encoders normally encode immutable objects to json, but this one does not.
IMO final fields should be serialized. Modifier transient can be used to skip it.
It would be nice to have logging of skipped fields and reason of it when FULL logging level is used.
The text was updated successfully, but these errors were encountered:
Encoder should map final fields or even log reason of skip fields.
I'm using in project immutable objects supported by lombok @value.
I spent a lot lot of time to debug why I have empty body using "consumes = APPLICATION_FORM_URLENCODED_VALUE".
All encoders normally encode immutable objects to json, but this one does not.
IMO final fields should be serialized. Modifier transient can be used to skip it.
It would be nice to have logging of skipped fields and reason of it when FULL logging level is used.
The text was updated successfully, but these errors were encountered: