Reputation: 3545
What is the difference between using a @OneToMany
and @ElementCollection
annotation since both work on the one-to-many relationship?
Upvotes: 211
Views: 159568
Reputation: 31
This annotation will be applied when there is a relation with non-entity and these associations relation was HAS-A. Every collection is created with a table and gets relation by Foreign Key.
There are two types of element collections
Index: The index type collection has a table with 3 columns they are
Non-Index: The Non-Index type collection has a table with 2 columns they are
Note: Here it won't have any index column because, Since a SET doesn’t retain the insertion order.
Upvotes: 3
Reputation: 74
You can use ElementCollection replace for you use @OneToMany. Example you can have one Project in many versions.
@ElementCollection
@CollectionTable(name="versions",
joinColumns = @JoinColumn(name="projectID"))
@LazyCollection(LazyCollectionOption.FALSE)
@JoinColumn(name="version",nullable = false)
private Set<String> versions;
You also can use @ElementCollection in mapping OGM for array in one collection.
@ElementCollection(fetch = FetchType.EAGER)
private Set<String> researchAreas;
Upvotes: -1
Reputation: 91
ElementCollection can override the mappings, or table for their collection, so you can have multiple entities reference the same Embeddable class, but have each store their dependent objects in a separate table.
Upvotes: 1
Reputation: 409
Basic or Embedded: @ElementCollection
Entities: @OneToMany or @ManyToMany
@ElementCollection:
@OneToMany / @ManyToMany:
Upvotes: 8
Reputation: 5023
I believe @ElementCollection
is mainly for mapping non-entities (embeddable or basic) while @OneToMany
is used to map entities. So which one to use depend on what you want to achieve.
Upvotes: 215
Reputation: 692191
ElementCollection
is a standard JPA annotation, which is now preferred over the proprietary Hibernate annotation CollectionOfElements
.
It means that the collection is not a collection of entities, but a collection of simple types (Strings, etc.) or a collection of embeddable elements (class annotated with @Embeddable
).
It also means that the elements are completely owned by the containing entities: they're modified when the entity is modified, deleted when the entity is deleted, etc. They can't have their own lifecycle.
Upvotes: 210
Reputation: 340993
@ElementCollection
allows you to simplify code when you want to implement one-to-many relationship with simple or embedded type. For instance in JPA 1.0 when you wanted to have a one-to-many relationship to a list of String
s, you had to create a simple entity POJO (StringWrapper
) containing only primary key and the String
in question:
@OneToMany
private Collection<StringWrapper> strings;
//...
public class StringWrapper {
@Id
private int id;
private String string;
}
With JPA 2.0 you can simply write:
@ElementCollection
private Collection<String> strings;
Simpler, isn't it? Note that you can still control the table and column names using @CollectionTable
annotation.
Upvotes: 99
Reputation: 5186
@ElementCollection
marks a collection. This does not necessarily mean that this collection references a 1-n join.
Upvotes: 0