私はこの単純なモデルを持っています:
@Table(name = "Books")
public class Book extends Model {
@Column(name = "title")
String title;
//Variable to cache the pages
List<Page> pages;
public Book(){
}
public List<Page> getPages() {
if (pages==null) pages=getMany(Page.class, "book");
return pages;
}
}
そして Page.java は次のとおりです。
@Table(name = "Pages")
public class Page extends Model {
@Column(name = "words")
int words;
@Column(name = "book")
Book book; //ForeignKey of the book it belongs
public Page(){
}
}
私が抱えている問題は、オブジェクトを取得するときにロードされないブックオブジェクト全体 (すべての子オブジェクトを含む) を (GSon を使用して) JSon にシリアル化したいことです。
public String toJSon(long id){
Book b = new Select().from(Book.class).where("id = ?", id).executeSingle();
// At this point, the array of pages is obviously empty, and I don't want to hard-call "getPages" because in the future every page will have words, and I would then have to iterate every page, etc..
Gson gson = new GsonBuilder().create();
return gson.toJson(b);
}
Book オブジェクトとそのすべてのページを一度に読み込むにはどうすればよいですか?