0
我想在「id」上添加兩個名稱。 像@JsonProperty("value")
和@JsonProperty("id")
如何做到這一點?使用@JsonProperty使用@entity綁定更多名稱與實體類
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "trainingProgramId", unique = true, nullable = false)
public class TrainingProgram {
`private Integer id;`
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
}
[JSON Jackson解析不同的鍵到相同的字段]的可能重複(http://stackoverflow.com/questions/19564711/json-jackson-parse-different-keys-into-same-field) – rorschach