我们正在尝试编写一个 API 来创建不同类型的元素。这些元素具有 JPA 实体表示。以下代码显示了我们的基本元素结构(简化):
import javax.persistence.*;
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Element {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
@Column
private String type;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
每个元素实现看起来都不同,但这个例子应该足够了:
import javax.persistence.Column;
import javax.persistence.Entity;
@Entity
public class SpecializedElement1 extends Element {
@Column
private String attribute;
public String getAttribute() {
return attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
}
我们使用 Jackson,典型的控制器动作如下所示:
@RequestMapping(value = "/createElement", method = RequestMethod.POST)
@ResponseBody
public HashMap<String, Object> create(@RequestBody Element element) {
HashMap<String, Object> response = new HashMap<String, Object>()
response.put("element", element);
response.put("status", "success");
return response;
}
典型的请求正文如下所示:
{
"type": "constantStringForSpecializedElement1"
"text": "Bacon ipsum dolor sit amet cow bacon drumstick shankle ham hock hamburger."
}
正如您将看到的:这不起作用,因为 Jackson 不知道如何将此对象映射到 SpecializedElement1。
问题是:我怎样才能使这项工作?