Java--hibernate树状映射

1.假设此对象为(组织结构)
package hibernate002test.copy;

import java.util.HashSet;
import java.util.Set;

import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
/**

  • 树状映射
  • @author Lenovo

*/
@Entity
public class Org {
private int id;
private String name;
private Set<Org> children = new HashSet<Org>();
private Org parent;

@Id
@GeneratedValue
public int getId() {
	return id;
}

public void setId(int id) {
	this.id = id;
}

public String getName() {
	return name;
}

public void setName(String name) {
	this.name = name;
}


@OneToMany(mappedBy = "parent",cascade=CascadeType.ALL,fetch=FetchType.EAGER)//父类与子类相互关联,当树小时可用EAGER
public Set<Org> getChildren() {
	return children;
}

public void setChildren(Set<Org> children) {
	this.children = children;
}

@ManyToOne
@JoinColumn(name="parent_id")
public Org getParent() {
	return parent;
}

public void setParent(Org parent) {
	this.parent = parent;
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值