-
Notifications
You must be signed in to change notification settings - Fork 2
json serializer/deserializer question... #4
Comments
Yes, it does. You'll need to implement I just fixed a bug with |
Hi, Malachi! Great - just what i was looking for ;) What about circular references support? Currently the workaround on the server side using Jackson (Json library) is to assign an id to each entity, see post: Could something like that be implemented in your serializer?
Regards! On 05 Mar 2014, at 02:03, Malachi Griffie [email protected] wrote:
|
There is unfortunately no support for circular references atm, so you'll probably just get a stack overflow. I would recommend handling it in your model class since that is outside the scope of the serializer. (ie - I could just set any circular references to null; but the data will be lost since there is no way in JSON to represent a circular data structure.) If you want to do it that way, just add a |
Does the json serializer/deserializer support Enums?
eg. Java enums
The text was updated successfully, but these errors were encountered: