I have a spring controller with method
@RequestMapping(value="/list", method=RequestMethod.POST)
public ModelAndView getList(NSomeObject someObject)
but the query is something like localhost:8080/list?a=some_value&b=some_value
How to convert this to java object? Is there any counterpart of json and jackson?