I want to provide a POST
servlet that takes the following JSON
content:
{
"name": John
"age": 25,
"some": "more",
"params: "should",
"get": "mapped"
}
Two of those properties should be explicit mapped to defined parameters. All other parameters should go into a Map<String, String>
.
Question: how can I let Spring
map them directly into the map of the bean?
@RestController
public void MyServlet {
@PostMapping
public void post(@RequestBody PostBean bean) {
}
}
public class PostBean {
private String name;
private String age;
//all other json properties should go here
private Map<String, String> map;
}