├── .gitignore ├── README.md ├── dongmin ├── java │ └── 가변인자.md ├── spring-data-jpa │ ├── spring-data-jpa1.md │ ├── spring-data-jpa2.md │ └── spring-data-jpa3.md ├── spring-jpa-1 │ ├── 1week_record.md │ ├── Builder Pattern.md │ ├── Entity Design.md │ ├── Persist vs Merge.md │ └── 컴포넌트 스캔, DI, Junit5.md └── spring │ └── setter를 제거해야 하는 이유.md ├── eun ├── 0103_JPA소개(1강,2강).md ├── 0107_Hello JPA-애플리케이션 개발.md ├── 0111__영속성 컨텍스트1_(6강).md ├── 0115__플러시(7강), 준영속(8강).md ├── 0117__객체와 테이블 매핑__(10강).md ├── 0117__중간정리 강의__(9강).md ├── 0118__데이터베이스 스키마 자동생성.md ├── 0123_필드와 컬럼 매핑.md ├── 0124_필드와 컬럼 매핑 (완료).md ├── 0126_기본키 매핑방법(1).md ├── 1207_개념공부_ JPA.md ├── 1208_H2데이터베이스.md ├── 1209_H2~JPA설정중.md ├── 2023_0324_JPA페이징API.md ├── 2023_0324_프로젝션(SELECT).md ├── <파트 7> 다양한 연관관계 매핑 - 강의 훑어보기.md ├── CS │ ├── Ch.01~03__컴퓨터구조, 데이터, 명령어.md │ └── Ch.04__CPU의_작동원리.md ├── JPA활용2 │ ├── <0> (복습)JPA활용1_복습.md │ ├── <1> 강좌소개.md │ ├── <2> API개발기본_회원등록API.md │ ├── <3> 회원수정API.md │ ├── <4> API개발고급_개요.md │ ├── <5> API개발고급_ 조회용 샘플 데이터 입력.md │ ├── <6>간단한 주문조회 V1.md │ ├── <7> 간단한 주문조회 V2: DTO사용.md │ ├── Model_Domain.png │ ├── Model_Entity.png │ └── Model_Table.png ├── etc │ └── 리눅스 기본명령어.md ├── readme.md ├── 값 타입 & 값 타입 컬렉션(1).md ├── 강의리뷰_라이브러리,View환경설정.md ├── 강의리뷰_프로젝트생성.md ├── 단방향 연관관계.md ├── 실전예제2-연관관계매핑 시작.md └── 양방향 연관관계와 연관관계 주인.md ├── seohyun ├── Database │ ├── 1.DDL.md │ ├── 2.Scheme.md │ ├── 3.logical&physical.md │ ├── 4.Catalog.md │ └── 5.Indexing.md ├── JPA │ ├── 1.Intro.md │ ├── 10.DDL-AUTO.md │ ├── 11.Mapping_Column_Field.md │ ├── 12.Mapping_Primary_Key.md │ ├── 13.ERD.md │ ├── 14.Inheritance.md │ ├── 15.Proxy_Entity.md │ ├── 16.Lazy&Eager_Loading.md │ ├── 17.CASCADE.md │ ├── 18.OrphanRemoval.md │ ├── 19.DataType.md │ ├── 2.hibernate.dialect.md │ ├── 20.EmbeddedType.md │ ├── 21.JPQL.md │ ├── 22.Projection.md │ ├── 23.Paging.md │ ├── 24.Join.md │ ├── 3.CRUD.md │ ├── 4.JPQL.md │ ├── 5.persistenceContext.md │ ├── 6.flush.md │ ├── 7.detached.md │ ├── 8.@Entity.md │ └── 9.@Table.md ├── JPA_API │ └── 01.CREATE.md ├── Kafka │ ├── 1.Kafka.md │ └── img.png ├── Nomadcoders │ └── IT5MinutesBook │ │ ├── Day1.md │ │ ├── Day10.md │ │ ├── Day13.md │ │ ├── Day2.md │ │ ├── Day3.md │ │ ├── Day6.md │ │ ├── Day7.md │ │ └── Day9.md ├── SoftwareDevelopmentMethodology │ └── 1.OOP.md ├── java │ ├── 1.String.md │ ├── 2.TypeCasting.md │ ├── 3.SDKMAN.md │ └── 4.CollectionFW.md └── springboot │ ├── 1.MavenAndGradle.md │ ├── 2.webxml.md │ ├── 3.springboot.md │ ├── 4.MVC.md │ └── 5.RestApi.md └── taeong ├── Etc ├── DataStructure │ └── 자바의 Hash메소드.md ├── JDBC란.md ├── Operating system │ ├── 고아 프로세스.md │ ├── 스케줄러.md │ ├── 캐시의 지역성.md │ └── 프로세스와 스레드.md ├── Stream이란?.md ├── StringBuilder 사용 이유.md ├── WHERE절과 HAVING절의 차이.md ├── java │ └── static.md ├── network │ ├── 1. 네트워크 첫걸음.md │ ├── 2. 네트워크의 기본 규칙.md │ ├── 3. 물리계층 : 데이터를 전기신호로 변환하기.md │ ├── 4. 데이터 링크 계층 : 랜에서 데이터 전송하기.md │ ├── 5. 네트워크 계층 : 목적지에 데이터 전달하기.md │ ├── XSS.md │ ├── 라우터.md │ ├── 라우터와 스위치의 차이점.md │ ├── 멀티플렉싱과 디멀티플렉싱.md │ └── 브라우저에 url을 입력하고 엔터를 쳤을 때.md ├── save()에서 saveAll()로 변경한 효과.md ├── saveAll을 써도 insert 쿼리가 여러 번 발생하는 이유.md ├── spring │ ├── @ResponseBody의 동작 과정.md │ ├── AOP.md │ ├── DI 3가지 방법.md │ ├── SOLID 원칙.md │ ├── db │ │ ├── DataSource.md │ │ ├── 데이터베이스 커넥션을 획득하는 과정.md │ │ ├── 커넥션 데드락.md │ │ ├── 커넥션 풀.md │ │ └── 트랜잭션 격리 수준.md │ ├── 스프링 DI 기술의 필요성.md │ ├── 스프링 빈과 등록 방법.md │ ├── 스프링 컨테이너.md │ ├── 왜 생성자 주입을 권장하는가?.md │ └── 의존성 주입(DI)이란?.md ├── tect-interview │ ├── API.md │ ├── JSON.md │ ├── MVC MVP MVVM패턴.md │ ├── Spring MVC패턴 적용사례.md │ ├── XML.md │ ├── flux패턴.md │ ├── static.md │ ├── 디자인 패턴.md │ ├── 싱글톤 패턴.md │ ├── 싱글톤 패턴을 구현하는 7가지 방법.md │ ├── 옵저버패턴.md │ ├── 의존성주입과 의존관계역전원칙.md │ ├── 이터레이터패턴.md │ ├── 전략패턴.md │ ├── 정적타입시스템의 필요성.md │ ├── 컨테이너.md │ ├── 클라우드, Saas, IaaS, PaaS.md │ ├── 팩토리패턴.md │ └── 프록시패턴.md ├── unit-test │ ├── 1. Unit Testing Overview.md │ ├── 2. Developing JUnit Tests.md │ ├── 3. Test Case Lifecycle Methods.md │ ├── 4. JUnit Custom Display Name.md │ └── 5. 여러가지 assert 메소드.md ├── 코딩테스트를 위한 시간복잡도.md ├── 테스트 코드를 잘 작성하는 엔지니어가 되기 위해서.md ├── 테코톡 정리 │ └── CSR&SSR.md └── 함수형 인터페이스란?.md ├── JPA ├── [활용편 1] 도메인 분석 설계.md ├── 엔티티 설계시 주의점.md ├── 엔티티 클래스 개발.md ├── 웹 계층 개발.md ├── 주문 도메인 개발.md ├── 프로젝트환경설정.md └── 회원 도메인 개발.md ├── JPA2 ├── (+) 영속성 관리 - 엔티티 조회,등록,수정,삭제.md ├── (1) JPA시작하기.md ├── (10) 일대일(1:1).md ├── (11) 상속관계 매핑.md ├── (12) @MappedSuperclass.md ├── (13) 프록시.md ├── (14) 즉시로딩과 지연로딩.md ├── (15) 영속성 전이(CASCADE)와 고아 객체.md ├── (16) 기본값 타입.md ├── (17) 임베디드 타입.md ├── (18) 값 타입과 불변.md ├── (19) 값 타입의 비교.md ├── (2) 영속성 컨텍스트.md ├── (20) 값 타입 컬렉션.md ├── (21) 객체지향쿼리언어 소개.md ├── (22) JPQL 기본 문법과 쿼리 API.md ├── (23) 프로젝션.md ├── (24) 페이징.md ├── (25) 조인.md ├── (26) 서브 쿼리.md ├── (27) JPQL 타입 표현.md ├── (28) 경로 표현식.md ├── (29) JPQL - fetch join 기본.md ├── (3) 플러시.md ├── (30) JPQL - fetch join 한계.md ├── (31) Named 쿼리.md ├── (32) 벌크 연산.md ├── (4) 엔티티 매핑.md ├── (5) 단방향 연관관계.md ├── (6) 양방향 연관관계와 연관관계의 주인.md ├── (7) 양방향 연관관계 주의점.md ├── (8) 다대일(N:1).md └── (9) 일대다(1:N).md └── JPA3(API 개발과 성능 최적화) ├── (01) API 개발 기본.md ├── (02) 지연 로딩과 조회 성능 최적화 - 엔티티 직접 노출.md ├── (03) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환.md ├── (04) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환 - 페치 조인 최적화.md └── (05) 지연 로딩과 조회 성능 최적화 - JPA에서 DTO로 바로 조회.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/README.md -------------------------------------------------------------------------------- /dongmin/java/가변인자.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/java/가변인자.md -------------------------------------------------------------------------------- /dongmin/spring-data-jpa/spring-data-jpa1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-data-jpa/spring-data-jpa1.md -------------------------------------------------------------------------------- /dongmin/spring-data-jpa/spring-data-jpa2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-data-jpa/spring-data-jpa2.md -------------------------------------------------------------------------------- /dongmin/spring-data-jpa/spring-data-jpa3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-data-jpa/spring-data-jpa3.md -------------------------------------------------------------------------------- /dongmin/spring-jpa-1/1week_record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-jpa-1/1week_record.md -------------------------------------------------------------------------------- /dongmin/spring-jpa-1/Builder Pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-jpa-1/Builder Pattern.md -------------------------------------------------------------------------------- /dongmin/spring-jpa-1/Entity Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-jpa-1/Entity Design.md -------------------------------------------------------------------------------- /dongmin/spring-jpa-1/Persist vs Merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-jpa-1/Persist vs Merge.md -------------------------------------------------------------------------------- /dongmin/spring-jpa-1/컴포넌트 스캔, DI, Junit5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring-jpa-1/컴포넌트 스캔, DI, Junit5.md -------------------------------------------------------------------------------- /dongmin/spring/setter를 제거해야 하는 이유.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/dongmin/spring/setter를 제거해야 하는 이유.md -------------------------------------------------------------------------------- /eun/0103_JPA소개(1강,2강).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0103_JPA소개(1강,2강).md -------------------------------------------------------------------------------- /eun/0107_Hello JPA-애플리케이션 개발.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0107_Hello JPA-애플리케이션 개발.md -------------------------------------------------------------------------------- /eun/0111__영속성 컨텍스트1_(6강).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0111__영속성 컨텍스트1_(6강).md -------------------------------------------------------------------------------- /eun/0115__플러시(7강), 준영속(8강).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0115__플러시(7강), 준영속(8강).md -------------------------------------------------------------------------------- /eun/0117__객체와 테이블 매핑__(10강).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0117__객체와 테이블 매핑__(10강).md -------------------------------------------------------------------------------- /eun/0117__중간정리 강의__(9강).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0117__중간정리 강의__(9강).md -------------------------------------------------------------------------------- /eun/0118__데이터베이스 스키마 자동생성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0118__데이터베이스 스키마 자동생성.md -------------------------------------------------------------------------------- /eun/0123_필드와 컬럼 매핑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0123_필드와 컬럼 매핑.md -------------------------------------------------------------------------------- /eun/0124_필드와 컬럼 매핑 (완료).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0124_필드와 컬럼 매핑 (완료).md -------------------------------------------------------------------------------- /eun/0126_기본키 매핑방법(1).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/0126_기본키 매핑방법(1).md -------------------------------------------------------------------------------- /eun/1207_개념공부_ JPA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/1207_개념공부_ JPA.md -------------------------------------------------------------------------------- /eun/1208_H2데이터베이스.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/1208_H2데이터베이스.md -------------------------------------------------------------------------------- /eun/1209_H2~JPA설정중.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/1209_H2~JPA설정중.md -------------------------------------------------------------------------------- /eun/2023_0324_JPA페이징API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/2023_0324_JPA페이징API.md -------------------------------------------------------------------------------- /eun/2023_0324_프로젝션(SELECT).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/2023_0324_프로젝션(SELECT).md -------------------------------------------------------------------------------- /eun/<파트 7> 다양한 연관관계 매핑 - 강의 훑어보기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/<파트 7> 다양한 연관관계 매핑 - 강의 훑어보기.md -------------------------------------------------------------------------------- /eun/CS/Ch.01~03__컴퓨터구조, 데이터, 명령어.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/CS/Ch.01~03__컴퓨터구조, 데이터, 명령어.md -------------------------------------------------------------------------------- /eun/CS/Ch.04__CPU의_작동원리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/CS/Ch.04__CPU의_작동원리.md -------------------------------------------------------------------------------- /eun/JPA활용2/<0> (복습)JPA활용1_복습.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<0> (복습)JPA활용1_복습.md -------------------------------------------------------------------------------- /eun/JPA활용2/<1> 강좌소개.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<1> 강좌소개.md -------------------------------------------------------------------------------- /eun/JPA활용2/<2> API개발기본_회원등록API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<2> API개발기본_회원등록API.md -------------------------------------------------------------------------------- /eun/JPA활용2/<3> 회원수정API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<3> 회원수정API.md -------------------------------------------------------------------------------- /eun/JPA활용2/<4> API개발고급_개요.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<4> API개발고급_개요.md -------------------------------------------------------------------------------- /eun/JPA활용2/<5> API개발고급_ 조회용 샘플 데이터 입력.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<5> API개발고급_ 조회용 샘플 데이터 입력.md -------------------------------------------------------------------------------- /eun/JPA활용2/<6>간단한 주문조회 V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<6>간단한 주문조회 V1.md -------------------------------------------------------------------------------- /eun/JPA활용2/<7> 간단한 주문조회 V2: DTO사용.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/<7> 간단한 주문조회 V2: DTO사용.md -------------------------------------------------------------------------------- /eun/JPA활용2/Model_Domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/Model_Domain.png -------------------------------------------------------------------------------- /eun/JPA활용2/Model_Entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/Model_Entity.png -------------------------------------------------------------------------------- /eun/JPA활용2/Model_Table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/JPA활용2/Model_Table.png -------------------------------------------------------------------------------- /eun/etc/리눅스 기본명령어.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/etc/리눅스 기본명령어.md -------------------------------------------------------------------------------- /eun/readme.md: -------------------------------------------------------------------------------- 1 | #개인 폴더 및 파일 생성 2 | ## 3 | -------------------------------------------------------------------------------- /eun/값 타입 & 값 타입 컬렉션(1).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/값 타입 & 값 타입 컬렉션(1).md -------------------------------------------------------------------------------- /eun/강의리뷰_라이브러리,View환경설정.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/강의리뷰_라이브러리,View환경설정.md -------------------------------------------------------------------------------- /eun/강의리뷰_프로젝트생성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/강의리뷰_프로젝트생성.md -------------------------------------------------------------------------------- /eun/단방향 연관관계.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/단방향 연관관계.md -------------------------------------------------------------------------------- /eun/실전예제2-연관관계매핑 시작.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/실전예제2-연관관계매핑 시작.md -------------------------------------------------------------------------------- /eun/양방향 연관관계와 연관관계 주인.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/eun/양방향 연관관계와 연관관계 주인.md -------------------------------------------------------------------------------- /seohyun/Database/1.DDL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Database/1.DDL.md -------------------------------------------------------------------------------- /seohyun/Database/2.Scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Database/2.Scheme.md -------------------------------------------------------------------------------- /seohyun/Database/3.logical&physical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Database/3.logical&physical.md -------------------------------------------------------------------------------- /seohyun/Database/4.Catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Database/4.Catalog.md -------------------------------------------------------------------------------- /seohyun/Database/5.Indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Database/5.Indexing.md -------------------------------------------------------------------------------- /seohyun/JPA/1.Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/1.Intro.md -------------------------------------------------------------------------------- /seohyun/JPA/10.DDL-AUTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/10.DDL-AUTO.md -------------------------------------------------------------------------------- /seohyun/JPA/11.Mapping_Column_Field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/11.Mapping_Column_Field.md -------------------------------------------------------------------------------- /seohyun/JPA/12.Mapping_Primary_Key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/12.Mapping_Primary_Key.md -------------------------------------------------------------------------------- /seohyun/JPA/13.ERD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/13.ERD.md -------------------------------------------------------------------------------- /seohyun/JPA/14.Inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/14.Inheritance.md -------------------------------------------------------------------------------- /seohyun/JPA/15.Proxy_Entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/15.Proxy_Entity.md -------------------------------------------------------------------------------- /seohyun/JPA/16.Lazy&Eager_Loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/16.Lazy&Eager_Loading.md -------------------------------------------------------------------------------- /seohyun/JPA/17.CASCADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/17.CASCADE.md -------------------------------------------------------------------------------- /seohyun/JPA/18.OrphanRemoval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/18.OrphanRemoval.md -------------------------------------------------------------------------------- /seohyun/JPA/19.DataType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/19.DataType.md -------------------------------------------------------------------------------- /seohyun/JPA/2.hibernate.dialect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/2.hibernate.dialect.md -------------------------------------------------------------------------------- /seohyun/JPA/20.EmbeddedType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/20.EmbeddedType.md -------------------------------------------------------------------------------- /seohyun/JPA/21.JPQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/21.JPQL.md -------------------------------------------------------------------------------- /seohyun/JPA/22.Projection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/22.Projection.md -------------------------------------------------------------------------------- /seohyun/JPA/23.Paging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/23.Paging.md -------------------------------------------------------------------------------- /seohyun/JPA/24.Join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/24.Join.md -------------------------------------------------------------------------------- /seohyun/JPA/3.CRUD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/3.CRUD.md -------------------------------------------------------------------------------- /seohyun/JPA/4.JPQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/4.JPQL.md -------------------------------------------------------------------------------- /seohyun/JPA/5.persistenceContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/5.persistenceContext.md -------------------------------------------------------------------------------- /seohyun/JPA/6.flush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/6.flush.md -------------------------------------------------------------------------------- /seohyun/JPA/7.detached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/7.detached.md -------------------------------------------------------------------------------- /seohyun/JPA/8.@Entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/8.@Entity.md -------------------------------------------------------------------------------- /seohyun/JPA/9.@Table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA/9.@Table.md -------------------------------------------------------------------------------- /seohyun/JPA_API/01.CREATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/JPA_API/01.CREATE.md -------------------------------------------------------------------------------- /seohyun/Kafka/1.Kafka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Kafka/1.Kafka.md -------------------------------------------------------------------------------- /seohyun/Kafka/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Kafka/img.png -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day1.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day10.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day13.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day2.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day3.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day6.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day7.md -------------------------------------------------------------------------------- /seohyun/Nomadcoders/IT5MinutesBook/Day9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/Nomadcoders/IT5MinutesBook/Day9.md -------------------------------------------------------------------------------- /seohyun/SoftwareDevelopmentMethodology/1.OOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/SoftwareDevelopmentMethodology/1.OOP.md -------------------------------------------------------------------------------- /seohyun/java/1.String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/java/1.String.md -------------------------------------------------------------------------------- /seohyun/java/2.TypeCasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/java/2.TypeCasting.md -------------------------------------------------------------------------------- /seohyun/java/3.SDKMAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/java/3.SDKMAN.md -------------------------------------------------------------------------------- /seohyun/java/4.CollectionFW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/java/4.CollectionFW.md -------------------------------------------------------------------------------- /seohyun/springboot/1.MavenAndGradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/springboot/1.MavenAndGradle.md -------------------------------------------------------------------------------- /seohyun/springboot/2.webxml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/springboot/2.webxml.md -------------------------------------------------------------------------------- /seohyun/springboot/3.springboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/springboot/3.springboot.md -------------------------------------------------------------------------------- /seohyun/springboot/4.MVC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/springboot/4.MVC.md -------------------------------------------------------------------------------- /seohyun/springboot/5.RestApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/seohyun/springboot/5.RestApi.md -------------------------------------------------------------------------------- /taeong/Etc/DataStructure/자바의 Hash메소드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/DataStructure/자바의 Hash메소드.md -------------------------------------------------------------------------------- /taeong/Etc/JDBC란.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/JDBC란.md -------------------------------------------------------------------------------- /taeong/Etc/Operating system/고아 프로세스.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/Operating system/고아 프로세스.md -------------------------------------------------------------------------------- /taeong/Etc/Operating system/스케줄러.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/Operating system/스케줄러.md -------------------------------------------------------------------------------- /taeong/Etc/Operating system/캐시의 지역성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/Operating system/캐시의 지역성.md -------------------------------------------------------------------------------- /taeong/Etc/Operating system/프로세스와 스레드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/Operating system/프로세스와 스레드.md -------------------------------------------------------------------------------- /taeong/Etc/Stream이란?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/Stream이란?.md -------------------------------------------------------------------------------- /taeong/Etc/StringBuilder 사용 이유.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/StringBuilder 사용 이유.md -------------------------------------------------------------------------------- /taeong/Etc/WHERE절과 HAVING절의 차이.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/WHERE절과 HAVING절의 차이.md -------------------------------------------------------------------------------- /taeong/Etc/java/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/java/static.md -------------------------------------------------------------------------------- /taeong/Etc/network/1. 네트워크 첫걸음.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/1. 네트워크 첫걸음.md -------------------------------------------------------------------------------- /taeong/Etc/network/2. 네트워크의 기본 규칙.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/2. 네트워크의 기본 규칙.md -------------------------------------------------------------------------------- /taeong/Etc/network/3. 물리계층 : 데이터를 전기신호로 변환하기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/3. 물리계층 : 데이터를 전기신호로 변환하기.md -------------------------------------------------------------------------------- /taeong/Etc/network/4. 데이터 링크 계층 : 랜에서 데이터 전송하기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/4. 데이터 링크 계층 : 랜에서 데이터 전송하기.md -------------------------------------------------------------------------------- /taeong/Etc/network/5. 네트워크 계층 : 목적지에 데이터 전달하기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/5. 네트워크 계층 : 목적지에 데이터 전달하기.md -------------------------------------------------------------------------------- /taeong/Etc/network/XSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/XSS.md -------------------------------------------------------------------------------- /taeong/Etc/network/라우터.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/라우터.md -------------------------------------------------------------------------------- /taeong/Etc/network/라우터와 스위치의 차이점.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/라우터와 스위치의 차이점.md -------------------------------------------------------------------------------- /taeong/Etc/network/멀티플렉싱과 디멀티플렉싱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/멀티플렉싱과 디멀티플렉싱.md -------------------------------------------------------------------------------- /taeong/Etc/network/브라우저에 url을 입력하고 엔터를 쳤을 때.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/network/브라우저에 url을 입력하고 엔터를 쳤을 때.md -------------------------------------------------------------------------------- /taeong/Etc/save()에서 saveAll()로 변경한 효과.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/save()에서 saveAll()로 변경한 효과.md -------------------------------------------------------------------------------- /taeong/Etc/saveAll을 써도 insert 쿼리가 여러 번 발생하는 이유.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/saveAll을 써도 insert 쿼리가 여러 번 발생하는 이유.md -------------------------------------------------------------------------------- /taeong/Etc/spring/@ResponseBody의 동작 과정.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/@ResponseBody의 동작 과정.md -------------------------------------------------------------------------------- /taeong/Etc/spring/AOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/AOP.md -------------------------------------------------------------------------------- /taeong/Etc/spring/DI 3가지 방법.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/DI 3가지 방법.md -------------------------------------------------------------------------------- /taeong/Etc/spring/SOLID 원칙.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/SOLID 원칙.md -------------------------------------------------------------------------------- /taeong/Etc/spring/db/DataSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/db/DataSource.md -------------------------------------------------------------------------------- /taeong/Etc/spring/db/데이터베이스 커넥션을 획득하는 과정.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/db/데이터베이스 커넥션을 획득하는 과정.md -------------------------------------------------------------------------------- /taeong/Etc/spring/db/커넥션 데드락.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/db/커넥션 데드락.md -------------------------------------------------------------------------------- /taeong/Etc/spring/db/커넥션 풀.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/db/커넥션 풀.md -------------------------------------------------------------------------------- /taeong/Etc/spring/db/트랜잭션 격리 수준.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/db/트랜잭션 격리 수준.md -------------------------------------------------------------------------------- /taeong/Etc/spring/스프링 DI 기술의 필요성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/스프링 DI 기술의 필요성.md -------------------------------------------------------------------------------- /taeong/Etc/spring/스프링 빈과 등록 방법.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/스프링 빈과 등록 방법.md -------------------------------------------------------------------------------- /taeong/Etc/spring/스프링 컨테이너.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/스프링 컨테이너.md -------------------------------------------------------------------------------- /taeong/Etc/spring/왜 생성자 주입을 권장하는가?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/왜 생성자 주입을 권장하는가?.md -------------------------------------------------------------------------------- /taeong/Etc/spring/의존성 주입(DI)이란?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/spring/의존성 주입(DI)이란?.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/API.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/JSON.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/MVC MVP MVVM패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/MVC MVP MVVM패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/Spring MVC패턴 적용사례.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/Spring MVC패턴 적용사례.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/XML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/XML.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/flux패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/flux패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/static.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/디자인 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/디자인 패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/싱글톤 패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/싱글톤 패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/싱글톤 패턴을 구현하는 7가지 방법.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/싱글톤 패턴을 구현하는 7가지 방법.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/옵저버패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/옵저버패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/의존성주입과 의존관계역전원칙.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/의존성주입과 의존관계역전원칙.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/이터레이터패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/이터레이터패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/전략패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/전략패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/정적타입시스템의 필요성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/정적타입시스템의 필요성.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/컨테이너.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/컨테이너.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/클라우드, Saas, IaaS, PaaS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/클라우드, Saas, IaaS, PaaS.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/팩토리패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/팩토리패턴.md -------------------------------------------------------------------------------- /taeong/Etc/tect-interview/프록시패턴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/tect-interview/프록시패턴.md -------------------------------------------------------------------------------- /taeong/Etc/unit-test/1. Unit Testing Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/unit-test/1. Unit Testing Overview.md -------------------------------------------------------------------------------- /taeong/Etc/unit-test/2. Developing JUnit Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/unit-test/2. Developing JUnit Tests.md -------------------------------------------------------------------------------- /taeong/Etc/unit-test/3. Test Case Lifecycle Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/unit-test/3. Test Case Lifecycle Methods.md -------------------------------------------------------------------------------- /taeong/Etc/unit-test/4. JUnit Custom Display Name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/unit-test/4. JUnit Custom Display Name.md -------------------------------------------------------------------------------- /taeong/Etc/unit-test/5. 여러가지 assert 메소드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/unit-test/5. 여러가지 assert 메소드.md -------------------------------------------------------------------------------- /taeong/Etc/코딩테스트를 위한 시간복잡도.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/코딩테스트를 위한 시간복잡도.md -------------------------------------------------------------------------------- /taeong/Etc/테스트 코드를 잘 작성하는 엔지니어가 되기 위해서.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/테스트 코드를 잘 작성하는 엔지니어가 되기 위해서.md -------------------------------------------------------------------------------- /taeong/Etc/테코톡 정리/CSR&SSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/테코톡 정리/CSR&SSR.md -------------------------------------------------------------------------------- /taeong/Etc/함수형 인터페이스란?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/Etc/함수형 인터페이스란?.md -------------------------------------------------------------------------------- /taeong/JPA/[활용편 1] 도메인 분석 설계.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/[활용편 1] 도메인 분석 설계.md -------------------------------------------------------------------------------- /taeong/JPA/엔티티 설계시 주의점.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/엔티티 설계시 주의점.md -------------------------------------------------------------------------------- /taeong/JPA/엔티티 클래스 개발.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/엔티티 클래스 개발.md -------------------------------------------------------------------------------- /taeong/JPA/웹 계층 개발.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/웹 계층 개발.md -------------------------------------------------------------------------------- /taeong/JPA/주문 도메인 개발.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/주문 도메인 개발.md -------------------------------------------------------------------------------- /taeong/JPA/프로젝트환경설정.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/프로젝트환경설정.md -------------------------------------------------------------------------------- /taeong/JPA/회원 도메인 개발.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA/회원 도메인 개발.md -------------------------------------------------------------------------------- /taeong/JPA2/(+) 영속성 관리 - 엔티티 조회,등록,수정,삭제.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(+) 영속성 관리 - 엔티티 조회,등록,수정,삭제.md -------------------------------------------------------------------------------- /taeong/JPA2/(1) JPA시작하기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(1) JPA시작하기.md -------------------------------------------------------------------------------- /taeong/JPA2/(10) 일대일(1:1).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(10) 일대일(1:1).md -------------------------------------------------------------------------------- /taeong/JPA2/(11) 상속관계 매핑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(11) 상속관계 매핑.md -------------------------------------------------------------------------------- /taeong/JPA2/(12) @MappedSuperclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(12) @MappedSuperclass.md -------------------------------------------------------------------------------- /taeong/JPA2/(13) 프록시.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(13) 프록시.md -------------------------------------------------------------------------------- /taeong/JPA2/(14) 즉시로딩과 지연로딩.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(14) 즉시로딩과 지연로딩.md -------------------------------------------------------------------------------- /taeong/JPA2/(15) 영속성 전이(CASCADE)와 고아 객체.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(15) 영속성 전이(CASCADE)와 고아 객체.md -------------------------------------------------------------------------------- /taeong/JPA2/(16) 기본값 타입.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(16) 기본값 타입.md -------------------------------------------------------------------------------- /taeong/JPA2/(17) 임베디드 타입.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(17) 임베디드 타입.md -------------------------------------------------------------------------------- /taeong/JPA2/(18) 값 타입과 불변.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(18) 값 타입과 불변.md -------------------------------------------------------------------------------- /taeong/JPA2/(19) 값 타입의 비교.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(19) 값 타입의 비교.md -------------------------------------------------------------------------------- /taeong/JPA2/(2) 영속성 컨텍스트.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(2) 영속성 컨텍스트.md -------------------------------------------------------------------------------- /taeong/JPA2/(20) 값 타입 컬렉션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(20) 값 타입 컬렉션.md -------------------------------------------------------------------------------- /taeong/JPA2/(21) 객체지향쿼리언어 소개.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(21) 객체지향쿼리언어 소개.md -------------------------------------------------------------------------------- /taeong/JPA2/(22) JPQL 기본 문법과 쿼리 API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(22) JPQL 기본 문법과 쿼리 API.md -------------------------------------------------------------------------------- /taeong/JPA2/(23) 프로젝션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(23) 프로젝션.md -------------------------------------------------------------------------------- /taeong/JPA2/(24) 페이징.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(24) 페이징.md -------------------------------------------------------------------------------- /taeong/JPA2/(25) 조인.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(25) 조인.md -------------------------------------------------------------------------------- /taeong/JPA2/(26) 서브 쿼리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(26) 서브 쿼리.md -------------------------------------------------------------------------------- /taeong/JPA2/(27) JPQL 타입 표현.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(27) JPQL 타입 표현.md -------------------------------------------------------------------------------- /taeong/JPA2/(28) 경로 표현식.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(28) 경로 표현식.md -------------------------------------------------------------------------------- /taeong/JPA2/(29) JPQL - fetch join 기본.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(29) JPQL - fetch join 기본.md -------------------------------------------------------------------------------- /taeong/JPA2/(3) 플러시.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(3) 플러시.md -------------------------------------------------------------------------------- /taeong/JPA2/(30) JPQL - fetch join 한계.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(30) JPQL - fetch join 한계.md -------------------------------------------------------------------------------- /taeong/JPA2/(31) Named 쿼리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(31) Named 쿼리.md -------------------------------------------------------------------------------- /taeong/JPA2/(32) 벌크 연산.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(32) 벌크 연산.md -------------------------------------------------------------------------------- /taeong/JPA2/(4) 엔티티 매핑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(4) 엔티티 매핑.md -------------------------------------------------------------------------------- /taeong/JPA2/(5) 단방향 연관관계.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(5) 단방향 연관관계.md -------------------------------------------------------------------------------- /taeong/JPA2/(6) 양방향 연관관계와 연관관계의 주인.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(6) 양방향 연관관계와 연관관계의 주인.md -------------------------------------------------------------------------------- /taeong/JPA2/(7) 양방향 연관관계 주의점.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(7) 양방향 연관관계 주의점.md -------------------------------------------------------------------------------- /taeong/JPA2/(8) 다대일(N:1).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(8) 다대일(N:1).md -------------------------------------------------------------------------------- /taeong/JPA2/(9) 일대다(1:N).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA2/(9) 일대다(1:N).md -------------------------------------------------------------------------------- /taeong/JPA3(API 개발과 성능 최적화)/(01) API 개발 기본.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA3(API 개발과 성능 최적화)/(01) API 개발 기본.md -------------------------------------------------------------------------------- /taeong/JPA3(API 개발과 성능 최적화)/(02) 지연 로딩과 조회 성능 최적화 - 엔티티 직접 노출.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA3(API 개발과 성능 최적화)/(02) 지연 로딩과 조회 성능 최적화 - 엔티티 직접 노출.md -------------------------------------------------------------------------------- /taeong/JPA3(API 개발과 성능 최적화)/(03) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA3(API 개발과 성능 최적화)/(03) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환.md -------------------------------------------------------------------------------- /taeong/JPA3(API 개발과 성능 최적화)/(04) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환 - 페치 조인 최적화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA3(API 개발과 성능 최적화)/(04) 지연 로딩과 조회 성능 최적화 - 엔티티를 DTO로 변환 - 페치 조인 최적화.md -------------------------------------------------------------------------------- /taeong/JPA3(API 개발과 성능 최적화)/(05) 지연 로딩과 조회 성능 최적화 - JPA에서 DTO로 바로 조회.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpringBoot-JPA-study/spring-jpa-springboot-study/HEAD/taeong/JPA3(API 개발과 성능 최적화)/(05) 지연 로딩과 조회 성능 최적화 - JPA에서 DTO로 바로 조회.md --------------------------------------------------------------------------------