FasterXML / FasterXML/jackson-future-ideas
serialize plain object to multi-level json (`@JsonWrap[ped]`)
Open
- Dominant language
- No language data
- Stars
- 21
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
```
public class Member{
private String id;
@JsonProperty("User.name")
private String name;
@JsonProperty("User.age")
private Integer age;
}
```
I expect the serialization is
```
{
"id":null,
"User":{
"name":null,
"age": null
}
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.