举个例子:
/** 论坛主题 **/
public class Theme {
/** 数据库ID **/
private Integer id;
/** 标题 **/
private String title;
/** 主题内容 **/
private String content;
/** 回复 **/
private Set<Reply> replies = new HashSet<Reply>();
//getter...
//setter...
}/** 主题回复 **/
public class Reply {
/** 数据库id **/
private Integer id;
/** 回复内容 **/
private String content;
/** 回复所属主题 **/
private Theme theme;
//getter...
//setter...
}hibernate之fetch,布布扣,bubuko.com
原文地址:http://blog.csdn.net/xtayfjpk/article/details/26957893