Spring @ReponseBody @RequestBody与抽象类
假设我有三节课。
public abstract class Animal {}public class Cat extends Animal {}
public class Dog extends Animal {}
我可以做这样的事情吗?
Input: a json which it is Dog or Cat
Output: a dog/cat depends on input object type
我不明白为什么以下代码不起作用。还是应该使用两种单独的方法来处理新的猫狗?
@RequestMapping(value = "/animal", method = RequestMethod.POST, produces = "application/json; charset=utf-8")private @ResponseBody <T extends Animal>T insertAnimal(@RequestBody T animal) {
return animal;
}
更新:对不起,我忘记包含错误消息
HTTP状态500-请求处理失败;嵌套异常是java.lang.IllegalArgumentException:无法解析类型变量’T’
回答:
我自己找到了答案,这是参考链接。
我所做的是在抽象类上方添加了一些代码
import com.fasterxml.jackson.annotation.JsonSubTypes;import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeInfo.*;
@JsonTypeInfo(use = Id.NAME, include = As.PROPERTY, property = "type")
@JsonSubTypes({
@JsonSubTypes.Type(value = Cat.class, name = "cat"),
@JsonSubTypes.Type(value = Dog.class, name = "dog")
})
public abstract class Animal{}
然后在HTML的json输入中,
var inputjson = { "type":"cat",
//blablabla
};
提交json之后,最后在控制器中,
@RequestMapping(value = "/animal", method = RequestMethod.POST, produces = "application/json; charset=utf-8", consumes=MediaType.APPLICATION_JSON_VALUE)public @ResponseBody insertanimal(@RequestBody Animal tmp) {
return tmp;
}
在这种情况下,取决于json输入,变量tmp会自动转换为a Dog或Catobject。
以上是 Spring @ReponseBody @RequestBody与抽象类 的全部内容, 来源链接: utcz.com/qa/431616.html