Hibernate关联关系配置-----基于连接表的双向一对一映射配置

实体:

package bi.one2one.jointable;

public class Husband {
	private int id;
	private String name;
	private Wife wife;

	public Husband() {

	}

	public Husband(int id, String name, Wife wife) {
		super();
		this.id = id;
		this.name = name;
		this.wife = wife;
	}

	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;
	}

	public Wife getWife() {
		return wife;
	}

	public void setWife(Wife wife) {
		this.wife = wife;
	}

}

package bi.one2one.jointable;

public class Wife {
	private int id;
	private String name;
	private Husband husband;

	public Wife() {

	}

	public Wife(int id, String name, Husband husband) {
		super();
		this.id = id;
		this.name = name;
		this.husband = husband;
	}

	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;
	}

	public Husband getHusband() {
		return husband;
	}

	public void setHusband(Husband husband) {
		this.husband = husband;
	}

}

hbm配置文件:

<hibernate-mapping>
	<class name="bi.one2one.jointable.Husband">
		<id name="id" column="hid">
			<generator class="native" />
		</id>
		<property name="name" type="string" column="name"></property>
		
		<join table="husbandwife" optional="true">
			<key column="hid" unique="true"></key>
			<many-to-one name="wife" unique="true" not-null="true" column="wid"></many-to-one>
		</join>
	</class>

</hibernate-mapping>
<hibernate-mapping>
	<class name="bi.one2one.jointable.Wife">
		<id name="id" column="wid">
			<generator class="native" />
		</id>
		<property name="name" type="string" column="name"></property>
		
		<join table="husbandwife" inverse="true" optional="true">
			<key column="wid" unique="true"></key>
			<many-to-one name="husband" unique="true" not-null="true" column="hid"></many-to-one>
		</join>
	</class>

</hibernate-mapping>

测试文件:

public class Test {
	@org.junit.Test
	public void testAdd() {
		SessionFactory sf = HibernateUtil.getSessionFactory();
		Session session = sf.getCurrentSession();
		session.beginTransaction();
		
		Wife wife = new Wife();
		wife.setName("wife");
		//wife.setHusband(husband);
		
		Husband husband = new Husband();
		husband.setName("husband");
		husband.setWife(wife);
		
		session.save(husband);
		session.save(wife);
		
		
		session.beginTransaction().commit();

	}
}

测试结果:

Hibernate: insert into Husband (name) values (?)
Hibernate: insert into Wife (name) values (?)
Hibernate: insert into husbandwife (wid, hid) values (?, ?)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值