Bidirectional @OneToOne primary key association
It’s time to continue articles about Hibernate. The last one was dedicated to unidirectional @OneToOne association. So today I will show you how to obtain bidirectional @OneTonOne primary key association. An example from this tutorial based on previous article. Let’s get started.
I will work with the same tables which I have created previously. In order to setup a bidirectional one to one association I need to update two POJOs and the way of saving process. Let’s consider a new version of Author class:
import javax.persistence.*; @Entity @Table(name='authors') public class Author { @Id @GeneratedValue private Integer id; private String name; @OneToOne(mappedBy='author', cascade=CascadeType.ALL) private Biography biography; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Biography getBiography() { return biography; } public void setBiography(Biography biography) { this.biography = biography; } }
The changes are minimal. I have just removed @PrimaryKeyJoinColumn from biography field. In the bidirectional association appears two sides of association – owning and inverse. For one to one bidirectional relationships, the owning side corresponds to the side that contains the corresponding foreign key. In our case the owning side is Author class. Let’s go ahead.
Quote from JPA 2 specification:
The inverse side of a bidirectional relationship must refer to its owning side by use of the mappedBy element of the OneToOne, OneToMany, or ManyToMany annotation. The mappedBy element designates the property or field in the entity that is the owner of the relationship.
The inverse side in this example is the Biography class. It requires more essential changes comparing with the Author class.
import javax.persistence.*; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; @Entity @Table(name='biographies') public class Biography { @Id @Column(name='author_id') @GeneratedValue(generator='gen') @GenericGenerator(name='gen', strategy='foreign', parameters=@Parameter(name='property', value='author')) private Integer authorId; private String information; @OneToOne @PrimaryKeyJoinColumn private Author author; public Author getAuthor() { return author; } public void setAuthor(Author author) { this.author = author; } public Integer getAuthorId() { return authorId; } public void setAuthorId(Integer authorId) { this.authorId = authorId; } public String getInformation() { return information; } public void setInformation(String information) { this.information = information; } }
The first important thing is decoration of authorId field with additional annotations.
... @GeneratedValue(generator='gen') @GenericGenerator(name='gen', strategy='foreign', parameters=@Parameter(name='property', value='author')) ...
In @GeneratedValue I specify a name of generator (“gen”) and in @GenericGenerator I define a strategy for generator. The second important thing is adding of author filed in the class with an appropriate getter and setter.
... @OneToOne @PrimaryKeyJoinColumn private Author author; ...
In this way we obtain a bidirectional association. Now we can access to Author from Biography and vice versa, because both of objects have references to each other. Now a process of objects saving must be updated:
... public static void main(String[] args) { SessionFactory sessionFactory = HibernateUtil.getSessionFactory(); Session session = sessionFactory.openSession(); session.beginTransaction(); Author author = new Author(); author.setName(' O. Henry'); Biography biography = new Biography(); biography.setInformation('William Sydney Porter better known as O. Henry...'); author.setBiography(biography); biography.setAuthor(author); session.save(author); session.getTransaction().commit(); session.close(); } ...
Notice that now I don’t persist owning side before adding inverse side to it. But you can see that I set the biography to the author and at the following string I set the author to the biography. This is a main purpose of bidirectional association. The result of the code execution is:
Hibernate: insert into authors (name) values (?) Hibernate: insert into biographies (information, author_id) values (?, ?)
Reference: Bidirectional @OneToOne primary key association from our JCG partner Alex Fruzenshtein at the Fruzenshtein’s notes blog.
Thanks, very good info…
in this example suppose biographies is optional then where i can apply null value.
Hi, that was a nice tutorial, my question is how can i achieve this if i want the user to be able to fill the forms themselves using JSF XHTML?
Here the details of author and biography are all hard coded in the business logic.