I'm usign @GeneratedValue(strategy = GenerationType.AUTO) to generate and id on my entity.
I don't now how it works, but on my chils table, generates id values, that follow the parent sequence.
//parent table
@Entity
@Table(name="parent")
public class Parent {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="id")
private long id;
@OneToMany(cascade = {CascadeType.ALL},fetch = FetchType.LAZY)
@JoinColumn(name=parentId")
@ForeignKey(name="FKparent")
private List<child> child;
//child table
@Entity
@Table(name="child")
public class Child {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="id")
private long id;
The inserted id values on parent, updates the sequence. The inserted id values on child, updates the sequence. On next insert of parent, the sequence... uses values updated by child insertions...
This Annotations, are no creating two sequences, only one. This is correct/expected?
I insert my entities with my dao service only using entityManager.persist(parent);