Doc说@Field
注释可用于重命名实体中的字段。那些技术上不是实体本身的嵌套POJO的字段呢?请考虑以下假设示例。
@Document
public class Person {
@Id
private String ssn;
@Field
private String name;
@Field
private Address address;
static class Address {
// how to rename this field to line1?
private String street;
}
}
答案 0 :(得分:1)
要专门回答您的问题,您可以@Field("line1")
使用street
Address
。{/ p>
我的项目中有这样的东西,它运行正常(参见descriptions
)
第1类
@Document
@JsonInclude(JsonInclude.Include.NON_NULL)
public class HotelInfo {
@Field("hotel_type") @JsonProperty("hotel_type")
public String hotelType;
@Field @JsonProperty("images")
public List<Image> images = new ArrayList<Image>();
@Field @JsonProperty("regions")
public List<String> regions = new ArrayList<String>();
@Field @JsonProperty("themes")
public List<String> themes = new ArrayList<String>();
@Field @JsonProperty("facilities")
public List<String> facilities;
@Field @JsonProperty("descriptions")
public Descriptions descriptions;
}
第2类
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Descriptions {
@Field("hotel_information") @JsonProperty("hotel_information")
public String hotelInformation;
}