迷失北京

          BlogJava 聯(lián)系 聚合 管理
            60 Posts :: 0 Stories :: 13 Comments :: 0 Trackbacks

          實(shí)體:

          package bi.one2one;
          
          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;
          
          public class Wife {
          	private int id;
          	private String name;
          	private Husband husband;
          
          	public Wife() {
          
          	}
          
          	public Wife(int id, String name, Husband husbnad) {
          		super();
          		this.id = id;
          		this.name = name;
          		this.husband = husbnad;
          	}
          
          	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.Husband">
          		<id name="id" column="did">
          			<generator class="native" />
          		</id>
          		<property name="name" type="string" column="name"></property>
          		<many-to-one name="wife" unique="true" column="wid"></many-to-one>
          	</class>
          
          </hibernate-mapping>
          
          <hibernate-mapping>
          	<class name="bi.one2one.Wife">
          		<id name="id" column="did">
          			<generator class="native" />
          		</id>
          		<property name="name" type="string" column="name"></property>
          		<one-to-one name="husband" property-ref="wife"></one-to-one>
          	</class>
          
          </hibernate-mapping>
          

            

          測(cè)試文件:

          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");
          		
          		Husband husband = new Husband();
          		husband.setName("husband");
          		husband.setWife(wife);
          		
          		session.save(wife);
          		session.save(husband);
          		
          		
          		session.beginTransaction().commit();
          
          	}
          }
          

            

          測(cè)試結(jié)果:

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

            



          posted on 2011-07-23 10:36 王康 閱讀(234) 評(píng)論(0)  編輯  收藏

          只有注冊(cè)用戶登錄后才能發(fā)表評(píng)論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 泗水县| 夏津县| 西吉县| 政和县| 满城县| 米脂县| 平潭县| 海南省| 永靖县| 房产| 大埔县| 松潘县| 灌阳县| 屏东市| 商南县| 长武县| 新干县| 汽车| 巧家县| 平度市| 邯郸县| 华蓥市| 福鼎市| 河津市| 永登县| 黑龙江省| 西吉县| 陈巴尔虎旗| 志丹县| 扬州市| 广汉市| 深州市| 明光市| 丹寨县| 安图县| 克山县| 东乌珠穆沁旗| 大冶市| 海南省| 耒阳市| 蒙山县|