hibernate树结构表的处理

1.建立类Org

package com.dada.hibernate;

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

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

@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(cascade={CascadeType.ALL},mappedBy="parent")
	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;
	}
}


2.建立测试类Itest

package com.dada.hibernate;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

public class Itest {
	private static SessionFactory sf;
	
	@BeforeClass
	public static void beforeClass() {
		//new SchemaExport(new AnnotationConfiguration().configure()).create(true, true);
		sf = new AnnotationConfiguration().configure().buildSessionFactory();
	}
	
	@AfterClass
	public static void afterClass() {
		sf.close();
	}
	
	@Test
	public void testSave() {
		Org g = new Org();
		g.setName("总公司");
		Org g1 = new Org();
		g1.setName("分公司1");
		Org g2 = new Org();
		g2.setName("分公司2");
		
		Org g11 = new Org();
		g11.setName("分公司1-部门1");
		Org g12 = new Org();
		g12.setName("分公司1-部门2");
		
		//设置这层关系是为了在进行保存的时候
		//只需要保存最上层的那个对象其他下面
		//的对象都可以被关联的保存起来
		g.getChildren().add(g1);
		g.getChildren().add(g2);
		g1.getChildren().add(g11);
		g1.getChildren().add(g12);
		
		//设置这层关系是为了设置它们在数据库中的parent_id而用的
		g11.setParent(g1);
		g12.setParent(g1);
		g1.setParent(g);
		g2.setParent(g);
//		
		Session ss = sf.getCurrentSession();
		ss.beginTransaction();
		ss.save(g);
		ss.getTransaction().commit();
	}
	
	@Test
	public void testLoad() {
		Session session = sf.getCurrentSession();
		session.beginTransaction();
		Org o = (Org) session.load(Org.class, 1);
		print(o,0);
		session.getTransaction().commit();
	}
	
	private void print(Org o,int level) {
		String preStr="";
		for(int i=0;i<level;i++) {
			preStr="----";
		}
		System.out.println(preStr+o.getName());
		for(Org child:o.getChildren()) {
			print(child,level+1);
		}
	}
	
	public static void main(String[] args) {
		for(int i=0;i<0;i++) {
			System.out.println("haha");
		}
	}
	
	
	

}


 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值