迷失北京

          BlogJava 聯系 聚合 管理
            60 Posts :: 0 Stories :: 13 Comments :: 0 Trackbacks

          實體:

          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 (?, ?)
          

            

          posted on 2011-07-23 10:46 王康 閱讀(115) 評論(0)  編輯  收藏

          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 花莲市| 凤城市| 沭阳县| 麦盖提县| 日照市| 嘉兴市| 平利县| 陆川县| 宣化县| 福清市| 榕江县| 长海县| 威海市| 北碚区| 青田县| 正阳县| 张家界市| 左贡县| 肇源县| 阿尔山市| 武强县| 霍州市| 桃园市| 中卫市| 蓬安县| 潍坊市| 赤峰市| 芦山县| 招远市| 乡宁县| 浪卡子县| 易门县| 辉南县| 永昌县| 新建县| 德昌县| 托克逊县| 乌拉特中旗| 宁波市| 游戏| 永济市|