我目前正在开发一个使用mongojack将对象存储在mongoDB中的java应用程序。 一切正常,直到我开始在Object中实现一些辅助方法,直接返回嵌套的对象而不是DBRef。
public class Dish {
private String id =null;
private String name;
private DBRef<User,String> author;
@JsonCreator
public Dish(@ObjectId @JsonProperty("_id") String id,
@JsonProperty("name") String name,
@JsonProperty("author") DBRef<User, String> author)){
this.id = id;
this.name = name;
this.author = author;}
@ObjectId
@Id
public String getId() {
return id;
}
@JsonProperty
public String getName() {
return name;
}
@JsonProperty
public DBRef<User, String> getAuthor() {
return author;
}
@JsonIgnore
public User getAuthorExtracted() {
return author.fetch();
}
但是,添加last方法会导致将authorExtracted添加到mongoDB中保存的JSON中。反正有没有把这样的辅助方法放在实际菜中,而不会搞砸将对象保存到数据库中?