Google News
logo
JPA - Interview Questions
What is the annotation used for persistence fields of type Collection in an Entity class?
Persistent fields in an Entity class which are of type Collection are annotated with the javax.persistence.ElementCollection annotation.

@Entity
public class Order {
 @ElementCollection
 protected List orderLines = new ArrayList<>();
}

 

Advertisement