Enterprise Java

JPA @Embeddable and @Embedded

Introduction:

As an object-oriented developer, we want to avoid having larger classes with tons of unrelatable fields. And so, we might often feel the need to represent a JPA Entity using multiple objects.

In this quick tutorial, we’ll learn how to achieve it using @Embedded and @Embeddable annotations in JPA or Hibernate.

Context Buildup:

Let’s say we have a person table with the following columns:

1
id|firstName|middleName|lastName|street|city|country|pincode

And we want to map it as a JPA Entity.

Mapping so many properties directly in our entity class doesn’t feel that natural to our developer instinct. Also, changing the database table structure is not a viable option. What do we do?

@Embeddable:

Let’s define a PersonName and Address classes first:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
@Embeddable
public class PersonName {
  
    private String firstName;
    private String middleName;
    private String lastName;
  
    //constructors, getters, setters
    ...
}
  
@Embeddable
public class Address {
    private String street;
    private String city;
    private String country;
    private String pincode;
  
    //constructors, getters, setters
    ...
}

We have marked both of these with @Embeddable annotation to denote that they’ll be embedded into a JPA entity.

@Embedded:

Finally, we’ll use @Embedded annotation to embed a specific type.

Let’s define our Person entity that’ll represent our person table:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
@Entity
public class Person {
     
    @Id
    @GeneratedValue
    private Integer id;
     
    @Embedded
    private PersonName name;
  
    @Embedded
    private Address address;
  
    //constructor, getters, setters
    ...
}

We have used @Embedded annotation here to denote that these objects will be embedded in our entity. In other words, all of these objects will together be mapped to a single person database table.

Overriding Attributes:

Embeddable objects often come handy specifically when we have multiple entities using it.

Let’s now say, we have another table – office:

1
id|streetAddr|city|country|postcode|...

The office table also has an Address type with the difference in just a few field names.

Here as well, we can use the same Address embeddable object. The idea is to override the street and pincode attributes of the Address class using @AttributeOverrides and @AttributeOverride annotations:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
@Entity
public class Office {
     
    @Id
    @GeneratedValue
    private Integer id;
  
    @Embedded
    @AttributeOverrides(value = {
      @AttributeOverride(name = "street", column = @Column(name = "streetAddr")),
      @AttributeOverride(name = "pincode", column = @Column(name = "postcode"))
    })
    private Address address;
    ...
}

This approach is cleaner and saves us from having duplicate fields with just different names repeated across multiple entities. 

Rather, we can override any of the column properties of our embeddable type.

Conclusion:

In this tutorial, we explored JPA @Emdeddable and @Embedded annotations.

Be the First to comment.

Published on Java Code Geeks with permission by Shubhra Srivastava, partner at our JCG program. See the original article here: JPA @Embeddable and @Embedded

Opinions expressed by Java Code Geeks contributors are their own.

Shubhra Srivastava

Shubhra is a software professional and founder of ProgrammerGirl. She has a great experience with Java/J2EE technologies and frameworks. She loves the amalgam of programming and coffee :)
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
St1mpy
St1mpy
4 years ago

Nice article programmer girl

Nenad Kosanovic
Nenad Kosanovic
4 years ago

Nice and clean…

Pranay Rane
Pranay Rane
2 years ago

Detailed an concise!

Back to top button