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
When I use @JsonIdentityInfo recursive element is presented as simple property like this: { "id": "1" "order": { "id": "1", "items": [ "1", { "id": "2", "order": "1" }, { "id": "3", "order": "1" } ] } }
I want these elements to be presented as objects with only id-properties like this: { "id": "1" "order": { "id": "1", "items": [ { "id": "1"}, { "id": "2", "order": { "id": "1" } }, { "id": "3", "order": { "id": "1" } } ] } }
In such a way it more useful for deserializing it on other platforms.
One more profit is that it would be possible to implement composite key for objects with this representation.
The text was updated successfully, but these errors were encountered:
When I use @JsonIdentityInfo recursive element is presented as simple property like this:
{ "id": "1" "order": { "id": "1", "items": [ "1", { "id": "2", "order": "1" }, { "id": "3", "order": "1" } ] } }
I want these elements to be presented as objects with only id-properties like this:
{ "id": "1" "order": { "id": "1", "items": [ { "id": "1"}, { "id": "2", "order": { "id": "1" } }, { "id": "3", "order": { "id": "1" } } ] } }
In such a way it more useful for deserializing it on other platforms.
One more profit is that it would be possible to implement composite key for objects with this representation.
The text was updated successfully, but these errors were encountered: