`
darrenzhu
  • 浏览: 816995 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

@PrimaryKeyJoinColumn and mappedBy

阅读更多

1 ANNOTATIONS
1.1 @PrimaryKeyJoinColumn and mappedBy
1.1.1 Note
@PrimaryKeyJoinColumn is an annotation, while mappedBy is only an attribute of the @OneToOne, @OneToMany, @ManyToOne and @ManyToMany

1.1.2 Reference URL
The following material reference from section “2.2.5.1 One-to-one” at
http://docs.jboss.org/hibernate/annotations/3.5/reference/en/html/entity.html
You can associate entities through a one-to-one relationship using @OneToOne. There are three cases for one-to-one associations: either the associated entities share the same primary keys values, a foreign key is held by one of the entities (note that this FK column in the database should be constrained unique to simulate one-to-one multiplicity), or a association table is used to store the link between the 2 entities (a unique constraint has to be defined on each fk to ensure the one to one multiplicity).
1.1.3 @PrimaryKeyJoinColumn
First, we map a real one-to-one association using shared primary keys:
@Entity
public class Body {
    @Id
    public Long getId() { return id; }

    @OneToOne(cascade = CascadeType.ALL)
    @PrimaryKeyJoinColumn
    public Heart getHeart() {
        return heart;
    }
    ...
}           
@Entity
public class Heart {
    @Id
    public Long getId() { ...}
}           
The @PrimaryKeyJoinColumn annotation does say that the primary key of the entity is used as the foreign key value to the associated entity.
Comments: the primary key is in Heart, and the associated entity is Body who has a foreign key referencing the primary key of Heart.
1.1.4 mappedBy attribute
In the following example, the associated entities are linked through an explicit foreign key column:
@Entity
public class Customer implements Serializable {
    @OneToOne(cascade = CascadeType.ALL)
    @JoinColumn(name="passport_fk")
    public Passport getPassport() {
        ...
    }

@Entity
public class Passport implements Serializable {
    @OneToOne(mappedBy = "passport")
    public Customer getOwner() {
    ...
}           
A Customer is linked to a Passport, with a foreign key column named passport_fk in the Customer table. The join column is declared with the @JoinColumn annotation which looks like the @Column annotation. It has one more parameters named referencedColumnName. This parameter declares the column in the targeted entity that will be used to the join. Note that when using referencedColumnName to a non primary key column, the associated class has to be Serializable. Also note that the referencedColumnName to a non primary key column has to be mapped to a property having a single column (other cases might not work).
The association may be bidirectional. In a bidirectional relationship, one of the sides (and only one) has to be the owner: the owner is responsible for the association column(s) update. To declare a side as not responsible for the relationship, the attribute mappedBy is used. mappedBy refers to the property name of the association on the owner side. In our case, this is passport. As you can see, you don't have to (must not) declare the join column since it has already been declared on the owner’s side.
Comments: the owner side is Customer (@JoinColumn is defined in Customer) who will be responsible for the association column update, and mappedBy will be used in non-owner side, the value of mappedBy is the property name of the association on the owner side. In the above example, the name of the association on the owner side is “passport” (Customer has a getter method: getPassport).
If no @JoinColumn is declared on the owner side, the defaults apply. A join column(s) will be created in the owner table and its name will be the concatenation of the name of the relationship in the owner side, _ (underscore), and the name of the primary key column(s) in the owned side. In this example passport_id because the property name is passport and the column id of Passport is id.
The third possibility (using an association table) is quite exotic.
@Entity
public class Customer implements Serializable {
    @OneToOne(cascade = CascadeType.ALL)
    @JoinTable(name = "CustomerPassports",
        joinColumns = @JoinColumn(name="customer_fk"),
        inverseJoinColumns = @JoinColumn(name="passport_fk")
    )
    public Passport getPassport() {
        ...
    }

@Entity
public class Passport implements Serializable {
    @OneToOne(mappedBy = "passport")
    public Customer getOwner() {
    ...
}         
A Customer is linked to a Passport through a association table named CustomerPassports ; this association table has a foreign key column named passport_fk pointing to the Passport table (materialized by the inverseJoinColumn, and a foreign key column named customer_fk pointing to the Customer table materialized by the joinColumns attribute.
You must declare the join table name and the join columns explicitly in such a mapping.

分享到:
评论

相关推荐

    Hibernate Annotation 共享主键一对一双向关联

    在上面的代码中,`Person`类中的`profile`属性使用了`mappedBy`属性,表明`Profile`是被关联方,`Profile`类中的`person`属性则使用了`@OneToOne`和`@PrimaryKeyJoinColumn`注解,表示`Person`是关联方,且主键和...

    Hibernate one2one_pk_1

    这里的关键在于`@OneToOne`和`@PrimaryKeyJoinColumn`注解的使用,以及`mappedBy`属性的设置。`@OneToOne`注解用于声明一对一的关联关系;`mappedBy`属性指明了关联关系的主导方,本例中Person类是被动方,IdCard类...

    hibernate一对一主键关联代码实现

    在这里,`mappedBy`属性用于指定对方实体中的字段,`@PrimaryKeyJoinColumn`表明两个实体的主键是相同的。 2. **非共享主键关联**: 如果两个实体的主键不相同,但仍然存在一对一关系,可以使用外键来建立关联。...

    Hibernate一对一主键关联映射(双向关联)

    在这个例子中,`User`和`Profile`实体通过`id`字段进行主键关联,`mappedBy`属性用于指定关联的反向属性。`cascade`属性定义了级联操作,如保存和删除。 双向一对一关联的好处在于简化了代码,提高了可读性和可维护...

    hibernate一对一主键关联映射(双项关联)

    1. **mappedBy**属性:在`@OneToOne`注解中,`mappedBy`属性指定了另一个实体中的反向关联字段。如果不设置,Hibernate会默认创建一个外键,此时需要在两个实体中都设置`@OneToOne`。 2. **级联操作**:`...

    hibernate_one_to_one映射简单入门例子

    @OneToOne(mappedBy = "person", cascade = CascadeType.ALL) private Profile profile; // getters and setters } @Entity public class Profile { @Id @GeneratedValue(strategy=GenerationType.IDENTITY)...

    hibernate动态生成表结构

    2. 一对多关系:使用`@OneToMany`注解,通过`mappedBy`属性指定对方实体类中的引用字段。 3. 多对一关系:使用`@ManyToOne`注解,通过`@JoinColumn`指定关联的列。 4. 多对多关系:使用`@ManyToMany`注解,通常...

    hibernate一对一实例

    @OneToOne(mappedBy = "person", cascade = CascadeType.ALL) private Passport passport; // getters and setters } ``` 2. `Passport`实体类: ```java @Entity public class Passport { @Id @...

Global site tag (gtag.js) - Google Analytics