We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the following given POJO class:
public static class Bar { public int id; } public static class Foo { public String name; public Bar bar; }
Suppose an instance of Foo has the following data:
Foo
{ "name": "abc", "bar": { "id": 123 } }
Then it shall be able to map to Map<String, Object> as:
Map<String, Object>
"name": "abc", "bar.id": 123
The reverse mapping shall also apply
The text was updated successfully, but these errors were encountered:
greenlaw110
No branches or pull requests
For the following given POJO class:
Suppose an instance of
Foo
has the following data:Then it shall be able to map to
Map<String, Object>
as:The reverse mapping shall also apply
The text was updated successfully, but these errors were encountered: