프로젝트/에브리타임 5

[프로젝트] 팀원과 다른 DB 사용할 때 체크해야 할 코드

build.gradle mariaDB dependencies { implementation 'org.springframework.boot:spring-boot-starter-mail' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-mustache' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-web' compileOnly 'o..

[프로젝트] 인터셉터로 에러 처리 시 파일 리턴하기

인터셉터를 이용해 /s가 붙은 주소의 요청을 받으면 인증 체크를 손쉽게 했었다. // CustomApiException package site.metacoding.everytimeclone.handler.ex; public class CustomApiException extends RuntimeException { public CustomApiException(String message) { super(message); } } // CustomException package site.metacoding.everytimeclone.handler.ex; public class CustomException extends RuntimeException { public CustomException(String m..

[프로젝트] JPA 페이징 + 검색기능 구현 (fetch)

https://github.com/jaewon2336/jpa-paging-search GitHub - jaewon2336/jpa-paging-search Contribute to jaewon2336/jpa-paging-search development by creating an account on GitHub. github.com 1. 글 목록을 뿌리기 위한 간단한 화면 구현 mustache 템플릿 엔진 사용 Everytime Home logout 검색 번호 제목 내용 작성일 새글쓰기 이전 다음 2. 엔티티 생성 테스트를 위한 엔티티이기 때문에 자세한 설정은 하지 않았다. package site.metacoding.pagingsearch.domain; import java.time.LocalDateTim..

[프로젝트] Github 협업하는 방법

협업 => 코드 합치기 : CI (Continuous Integration) 요즘은 깃헙에 CI를 많이 한다. a, b, c가 협업을 시작하기 전에 가장 먼저 해야 할 일은 다음과 같다. 1. git init 2. git remote add origin 저장소 (원격 origin) 3. git pull (내려받기) = git clone 위의 1, 2, 3은 clone과 같은 과정이다. 내려받으면 모두 1번 2번의 히스토리(형상)를 갖게된다. 이방식 말고 다른 방식이 있다. 저장소를 복제(fork)하는 것이다. 대규모 협업을 할 때 사용하는 방식이다. a도 자기만의 저장소가 있고, b도, c도 자기만의 저장소에 깃헙 형상을 복제한다. 복제한 저장소를 downStream, 원 저장소를 upStream이라고 ..