我无法使用定义类的附加属性使spring返回对象的序列化。
我的课程是:
@JsonTypeInfo(use=JsonTypeInfo.Id.NAME, include= JsonTypeInfo.As.PROPERTY, property="ObjectType")
@JsonSubTypes({
@JsonSubTypes.Type(value=LiteStudy.class, name="LiteStudy")
})
public class Entity {
...
}
@JsonTypeName("LiteStudy")
@JsonSubTypes({
@JsonSubTypes.Type(value=Study.class, name="Study")
})
public class LiteStudy extends Entity {
...
}
@JsonTypeName("Study")
public class Study extends LiteStudy{
...
}
在我的单元测试中,一个Study实例被正确序列化,具有该类的额外属性:
{"ObjectType":"Study",
...
}
使用这个很简单:
ObjectMapper mapper = new ObjectMapper();
mapper.readValue(studyJSON,study.getClass());
但是,在我的Spring Rest webservice模块中,研究是在没有“ObjectType”属性的情况下序列化的。
控制器看起来像这样(简化):
@ResponseBody
public RestResponse<Study> getStudyById(@PathVariable("studyIdentifier") String studyIdentifier) throws DAOException {
return getStudyRestResponse(studyIdentifier);
}
编辑:添加RestResponse(简化)
public class RestResponse<Content> {
private Content content;
private String message;
private Exception err;
public Content getContent() {
return content;
}
public void setContent(Content content) {
this.content = content;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public Exception getErr() {
return err;
}
public void setErr(Exception err) {
this.err = err;
}
知道为什么spring似乎忽略了@JsonType注释?
答案 0 :(得分:2)
尝试仅返回您需要的对象,不要将其包装在通用包装类中。您的问题与Java类型擦除有关。查看更多信息here
@ResponseBody
public @ResponseBody Study getStudyById(@PathVariable("studyIdentifier") String studyIdentifier) throws DAOException {
return studyIdentifier;
}