我有一条json
包含一些字段的简单消息,并希望使用spring-web
.
问题:我的目标类字段的命名与 json 响应不同。我怎样才能将它们映射到对象而不必重命名java中的字段?
有没有可以放在这里的注释?
{
"message":"ok"
}
public class JsonEntity {
//how to map the "message" json to this property?
private String value;
}
RestTemplate rest = new RestTemplate();
rest.getForObject(url, JsonEntity.class);