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
Are there any known libs in Java that can deserialize the JSON produce by this library? I have been using RABL before and serializing the data in flat structure with relationship attributes baked into the root object. Fast JSON API is producing output with the main object and the relationships separately like this:
Usually, I have seen APIs including the relationship data within the parent node (i.e. teams within each match in this example). But Fast JSON API is including them separately as a list. Is this a new pattern of exposing relationships and includers? My API client is in Java. I am using https://github.com/FasterXML/jackson to access the API. Instead of writing complex classes that maps this JSON, is there a recommended client that lets me navigate the JSON easily? Like for example,
Are there any known libs in Java that can deserialize the JSON produce by this library? I have been using RABL before and serializing the data in flat structure with relationship attributes baked into the root object. Fast JSON API is producing output with the main object and the relationships separately like this:
Usually, I have seen APIs including the relationship data within the parent node (i.e. teams within each match in this example). But Fast JSON API is including them separately as a list. Is this a new pattern of exposing relationships and includers? My API client is in Java. I am using https://github.com/FasterXML/jackson to access the API. Instead of writing complex classes that maps this JSON, is there a recommended client that lets me navigate the JSON easily? Like for example,
The text was updated successfully, but these errors were encountered: