I have a very simple question, but I can't seem to find a simple answer:
I got Jackson working to serialize Java beans to JSON in the response using @ResponseBody
But I didn't manage to serialize back JSON to Java beans in the request using @RequestBody
e.g.
// this works fine, Bean is being serialized to JSON
@RequestMapping(...)
public @ResponseBody Bean getSomething(...){
//...
}
// I don't know how to make this work, if if there is a way at all
@RequestMapping(...)
public void setSomething(@RequestBody Bean bean, ...){
//...
}
- Is it possible for the request at all?
- If so, how to configure it?
- Is there a JQuery example / tips (e.g. setting the right content type)?
Update:
See JQuery, Spring MVC @RequestBody and JSON - making it work together some quirks in the configuration (it worked for ResponseBody, but didn't for RequestBody, which doesn't make sense, the configuration is either correct or wrong. could be a bug?)