Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 검증헤더
- Not Modified
- 프록시객체
- 조건부요청
- HTTP상태코드
- 쿠키보안문제
- 세션만들어보기
- 서블릿필터
- 캐시
- UrlResource
- hikaricp
- supportParameter
- no cache
- resolveArgument
- 양쪽 모두 값 설정
- 서블릿http세션
- HTTP API
- Expires
- gradle오류
- max age
- 세션타임아웃설정
- Could not find or load main class worker.org.gradle.process.internal.worker.GradleWorkerMain
- must revalidate
- etag
- www-Authenticate
- 프록시 캐시 서버
- 300
- 쿠키생명주기
- http
- 인증체크
Archives
- Today
- Total
목록양방향 연관관계 (1)
복습을 위한
양방향 연관관계 주의사항
아래 두 개의 엔티티가 있다. @Entity public class Team { @Id@GeneratedValue @Column(name = "TEAM_ID") private Long id; private String name; @OneToMany(mappedBy = "team") private List members = new ArrayList(); @Entity public class Member { @Id @GeneratedValue @Column(name = "MEMBER_ID") private Long id; @Column(name = "USERNAME") private String username; // @Column(name = "TEAM_ID")
JPA
2024. 3. 2. 19:44