diff --git "a/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234.md" "b/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234.md"
new file mode 100644
index 0000000..3d1ce46
--- /dev/null
+++ "b/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234.md"
@@ -0,0 +1,111 @@
+# Spring 과제
+
+## 과정 1 : 인텔리제이 설치 및 jdk 17 설치, spring initializer를 이용하여 프로젝트 다운
+- https://gymdev.tistory.com/72를 참고하여 환경변수 설정함.
+#### 난관 : JAVAVIRTUALMACHINE 폴더에 jdk폴더를 넣고 싶어서 맥의 '폴더로 이동'기능을 사용!
+- https://support.apple.com/ko-kr/guide/mac-help/mchlp1236/mac
+- 이런 것도 있구나. 맥이란 해도해도 신기해요! 언제쯤 맥OS를 점령할지...
+
+
+
+## 과정 2 : 코드 작성
+### 난관 1 : symbol not find 문제
+--> 필요한 라이브러리를 import했더니 'web'이라는 symbol를 찾지 못했다고 뜬다.
+==> 해결 : https://www.goodsource.co.kr/125 참고
+- build.grandle의
+ implementation 'org.springframework.boot:spring-boot-starter'를
+ implementation 'org.springframework.boot:spring-boot-starter-web'으로 수정하고 빌딩하고 실행!
+
+
+### 난관 2 : java: cannot find symbol
+이번엔 email symbol을 찾지 못하고 에러를 낸다.
+
+
+==> 해결 : 당연함... 내가 email 선언 안해줌... String email을 추가해줬다! ㅎㅎ
+해결~
+
+
+### 난관 3 : localhost:8080 을 실행했으나 메인 페이지가 나타나지 않았다.
+
+
+- 참고 : https://devmango.tistory.com/97
+
+
+- 해결 과정 :난관4 & 난관5
+
+
+### 난관 4 : 분명 환경변수 설정을 다 해줬었는데 $java --version 을 해보니 jdk 21버전으로 뜬다.
+- 해결: jdk 21 버전을 삭제해줬다!
+- 삭제하지 않고 default jdk를 17로 바꿀 수는 없을까 해서 vim ~/.zshrc으로 zshrc 한 번 건드렸다가 터미널이 고장나길래 취소!
+
+
+
+```
+$ sudo rm -rf temurin-21.jdk
+```
+
+-참고 : https://ifuwanna.tistory.com/247
+
+
+
+### 난관 5 : 갑자기 application이 안돌아간다! 8080포트가 이미 사용 중..
+
+
+오케이 해결해주마
+
+
+
+- 8080포트를 죽여준다~ 해결!
+
+
+
+
+
+드디어 되는구나~~ʕ”̮ॽु⋆⁺₊⋆ ♡̷̷̷
+
+
+
+
+---
+SampleController.java 소스 코드 :
+
+```
+ package mvcstudy.mvcstudy.controller;
+
+ import org.springframework.stereotype.Controller;
+ import org.springframework.ui.Model;
+ import org.springframework.web.bind.annotation.GetMapping;
+ import org.springframework.web.bind.annotation.RequestParam;
+
+
+ @Controller
+ public class SampleController {
+ @GetMapping("/")
+ public String sample(Model model) {
+ model.addAttribute("description",
+ "메인 페이지 입니다.");
+ return "index";
+ }
+ @GetMapping("/members")
+ public String members(Model model) {
+ model.addAttribute("member1", "Yang");
+ model.addAttribute("member2", "Dong");
+ model.addAttribute("member3", "Seon");
+ return "members";
+ }
+
+ @GetMapping("/members/new")
+ public String showNewMember(@RequestParam(name=
+ "name", defaultValue = "Guest")String name, String email,
+ Model model){
+ model.addAttribute("name", name);
+ model.addAttribute("email", email);
+ return "newMember";
+ }
+ }
+```
+
+
+
+
+
diff --git "a/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/MvcStudyApplicationTests.java" "b/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/MvcStudyApplicationTests.java"
new file mode 100644
index 0000000..fdbdc5b
--- /dev/null
+++ "b/3\354\243\274\354\260\250 Server S-Day \352\263\274\354\240\234/MvcStudyApplicationTests.java"
@@ -0,0 +1,13 @@
+package mvcstudy.mvcstudy;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MvcStudyApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}