Advertisement
Guest User

Untitled

a guest
Oct 25th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. @Entity
  2. class A {
  3.     @Id Long aId;
  4.     String aName;
  5.     @OneToMany List<B> children;
  6. }
  7.  
  8. @Entity
  9. class B {
  10.     @Id Long bId;
  11.     String bName;
  12.     @ManyToOne A parent;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement