백엔드/멋쟁이사자처럼4 [충남대학교 멋쟁이사자처럼] 백엔트 트랙 2회 2주차 세션[3/18(화) 충남대학교 공과대학 5호관 창의설계실 20:00-22:00] REST 란?REST : HTTP URI(Uniform Resource Identifier 실습 & 과제병원 예약 시스템 구현https://footwarningmouse.tistory.com/62 [충남대학교 멋쟁이사자처럼] 2주차 병원 예약 시스템GitHub 링크https://github.com/EomTeaEun/backend-hospital-reservation/tree/EomTeaEun/develop GitHub - EomTeaEun/backend-hospital-reservationContribute to EomTeaEun/backend-hospital-reservation development by cre.. 2025. 3. 18. [충남대학교 멋쟁이사자처럼] 백엔트 트랙 1회 1주차 세션[3/11(화) 충남대학교 공과대학 5호관 창의설계실 20:00-22:00] Git Repository 로컬 저장소 = 실제 기록 공간, 개발자의 컴퓨터 위에 위치한 저장소 원격 저장소 = 인터넷이나 네트워크 상 다른 위치에 위치한 저장소 (ex : github) git add, git commit, git push 를 거쳐 저장소가 옮겨짐Working Directory -> Staging Area -> Repository -----> Remote ( Repository ) git add : 파일을 stage 에 올린다.ex) git add . + Working Directory의 파일 상태 git commit : 의미있는 변경 작업들을 저장소에 기록하는 동작-> 시간에 따라서 변.. 2025. 3. 11. [충남대학교 멋쟁이사자처럼] 백엔드 13기 합격 오반 됐음 2025. 3. 4. Lotto 코드 짜기 package lotto;import org.junit.jupiter.api.DisplayName;import org.junit.jupiter.api.Test;import java.util.List;import static org.assertj.core.api.Assertions.assertThatThrownBy;class LottoTest { @DisplayName("로또 번호의 개수가 6개가 넘어가면 예외가 발생한다.") @Test void createLottoByOverSize() { assertThatThrownBy(() -> new Lotto(List.of(1, 2, 3, 4, 5, 6, 7))) .isInstanceOf(IllegalArg.. 2025. 2. 5. 이전 1 다음