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
Hi,
We used to annotate date fields with @JsonFormat(shape = JsonFormat.Shape.STRING) so dates are serialized to ISO string format in a spring project. Then we added json-view (great job! thank you) to get rid of lazy initializacion problems... but dates are now returned as numeric timestamp. We can solve this using custom serializer (which is already supported) in each field...
Anyway, it would be great in a future not to force make those changes in the actual codebase.
The text was updated successfully, but these errors were encountered:
Hi,
We used to annotate date fields with
@JsonFormat(shape = JsonFormat.Shape.STRING)
so dates are serialized to ISO string format in a spring project. Then we added json-view (great job! thank you) to get rid of lazy initializacion problems... but dates are now returned as numeric timestamp. We can solve this using custom serializer (which is already supported) in each field...Anyway, it would be great in a future not to force make those changes in the actual codebase.
The text was updated successfully, but these errors were encountered: