Skip to content

Instantly share code, notes, and snippets.

@vjrngn
Created April 24, 2019 13:26
Show Gist options
  • Save vjrngn/f7d4256998f9d2e4b928e0b49c824357 to your computer and use it in GitHub Desktop.
Save vjrngn/f7d4256998f9d2e4b928e0b49c824357 to your computer and use it in GitHub Desktop.
Customer entity with updated relationship
package com.example.demo;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "customers")
public class Customer {
@Id
int id;
@OneToMany(mappedBy = "customer")
List<Order> orders;
public Customer() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment