您的位置:首页 > 其它

Hibernate 第十讲 表关联关系(六)组件映射

2013-03-06 21:21 405 查看
一:annotation配置方式

package com.darren.hibernate;

public class Wife {
    private String wifeName;
    private int age;
 
    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }
  
    public String getWifeName() {
        return wifeName;
    }

    public void setWifeName(String name) {
        this.wifeName = name;
    }
}
package com.darren.hibernate;

import javax.persistence.Embedded;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinColumns;
import javax.persistence.OneToOne;

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

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

    @Embedded    // 表示wife作为组件嵌入进来的
    public Wife getWife() {
        return wife;
    }

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

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

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

二:Xml配置方式

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
    <class name="com.bjsxt.hibernate.Husband" >
        <id name="id">
            <generator class="native"></generator>
        </id>
  
        <property name="name"></property>

        <!--嵌入进来的对象以及属性-->
        <component name="wife">
            <property name="wifeName"></property>
            <property name="age"></property>
        </component>
    </class>
</hibernate-mapping>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: