-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/mainmethod0126/mainmethod01…
- Loading branch information
Showing
6 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { Callout } from "nextra/components"; | ||
|
||
# 연관관계 매핑 기초 | ||
# 자바 ORM 표준 JPA 프로그래밍 (4) - 연관관계 매핑 기초 | ||
|
||
## 목표 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 엔티티 매핑 | ||
# 자바 ORM 표준 JPA 프로그래밍 (3) - 엔티티 매핑 | ||
|
||
## 엔티티 매핑 소개 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# JPA 시작하기 | ||
# 자바 ORM 표준 JPA 프로그래밍 (1) - JPA 시작하기 | ||
|
||
김영한님의 인프런 jpa 강의를 듣고 정리한 내용입니다. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# JPA 영속성 관리 내부 동작 방식 | ||
# 자바 ORM 표준 JPA 프로그래밍 (2) - 영속성 관리 내부 동작 방식 | ||
|
||
김영한님의 인프런 jpa 강의를 듣고 정리한 내용입니다. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"Persistence-Management-Internal-Operation-Method": "영속성 관리 내부 동작 방식", | ||
"Getting-Started-with-JPA": "JPA 시작하기", | ||
"Entity-Mapping": "엔티티 매핑", | ||
"retrieving-hierarchical-data-with-jpa": "jpa 사용시 계층형 데이터 조회하기", | ||
"Basic-Relationship-Mapping": "연관관계 매핑 기초", | ||
"various-associative-mappings": "다양한 연관관계 매핑" | ||
"Getting-Started-with-JPA": "자바 ORM 표준 JPA 프로그래밍 (1) - JPA 시작하기", | ||
"Persistence-Management-Internal-Operation-Method": "자바 ORM 표준 JPA 프로그래밍 (2) - 영속성 관리 내부 동작 방식", | ||
"Entity-Mapping": "자바 ORM 표준 JPA 프로그래밍 (3) - 엔티티 매핑", | ||
"Basic-Relationship-Mapping": "자바 ORM 표준 JPA 프로그래밍 (4) - 연관관계 매핑 기초", | ||
"various-associative-mappings": "자바 ORM 표준 JPA 프로그래밍 (5) - 다양한 연관관계 매핑", | ||
"retrieving-hierarchical-data-with-jpa": "jpa 사용시 계층형 데이터 조회하기" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { Callout } from "nextra/components"; | ||
|
||
# 다양한 연관관계 매핑 | ||
# 자바 ORM 표준 JPA 프로그래밍 (5) - 다양한 연관관계 매핑 | ||
|
||
## 다대일 [N:1] | ||
|
||
|