opklnm102 / study

✏️ What I Studied
15 stars 1 forks source link

JPA 도입시 이해해야할 것들에 대한 정리 #28

Open opklnm102 opened 6 years ago

opklnm102 commented 6 years ago

JPA 도입시 이해해야할 것들

참고자료

opklnm102 commented 6 years ago

언제 persistence context가 flush되는가

opklnm102 commented 6 years ago

JPQL 한계 인식

opklnm102 commented 6 years ago

EAGER, LAZY 로딩 전략 이해

// example
class Tree {
    @Id
    Long treeId;

    @OneToMany
    List<Apple> apples;
}

class Apple {
    @Id
    Long appleId;

    @ManyToOne
    Tree tree;
}