Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

Embeddable samples

Table of Contents
minLevel2
indent20px
styledisc

Collections Embeddables

Relationships Embeddables

Nested Embeddables

In the code snippet below, there is a User Entity which has an embedded ContactInfo. ContactInfo contains two other embeddeded embeddables, Address and Phone.

...

Code Block
titleUser.java
borderStylesolid
@Entity
public class User {
	@Id
	private int id;
	@Embedded
	ContactInfo contactInfo;
	
	public User(){
	}
//...
}

Collections Embeddables

...