1. 아래 예처럼 URL을 load 했을 때 설정한 Model 정보가 나타나는 API 서버를 만들어 보겠습니다. 2. Create New Spring Starter Project 3. Run As Spring Boot App 4. Server started 4.1 Server 가 이미 사용중일 경우, cmd 창에서 아래 taskkill 명령어를 통해 서버를 강제 종료할 수 있습니다. Web server failed to start. Port 8080 was already in use. >netstat -ao // tomcat port(보통 8080) 사용중인 pid를 찾는다. >taskkill /f /pid [pid] 5. 아직 API가 구현되지 않았으므로, 아래와 같은 화면이 나오는 것은 정상입니다. ..