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
- supportParameter
- must revalidate
- etag
- 서블릿http세션
- 쿠키생명주기
- www-Authenticate
- 세션타임아웃설정
- 쿠키보안문제
- Could not find or load main class worker.org.gradle.process.internal.worker.GradleWorkerMain
- http
- 조건부요청
- UrlResource
- 프록시객체
- resolveArgument
- no cache
- 세션만들어보기
- max age
- HTTP API
- Not Modified
- HTTP상태코드
- 서블릿필터
- 300
- 캐시
- Expires
- 프록시 캐시 서버
- gradle오류
- 검증헤더
- hikaricp
- 양쪽 모두 값 설정
- 인증체크
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