時指定@RequestBody類型的我有我已經收到一個抽象類的端點:使用抽象類
@RequestMapping(value = URL, method = RequestMethod.POST)
@ResponseBody
public ModelMap update(@RequestBody SomeAbstractClass form) {
...
}
當我張貼到它,我得到的錯誤:
Could not read JSON: Can not construct instance of ...,
problem: abstract types can only be instantiated with dditional type information
我理解爲什麼我得到這個錯誤,但我不知道我會在哪裏指定the additional type information
。理想情況下,我可以通過其中一個註釋來指定具體類的類型,但是現在任何解決方案都已足夠。
Java對象? – 2013-02-14 21:41:37