Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Entity
- class A {
- @Id Long aId;
- String aName;
- @OneToMany List<B> children;
- }
- @Entity
- class B {
- @Id Long bId;
- String bName;
- @ManyToOne A parent;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement