[Spring ์
๋ฌธ] 5. ํ์ ๊ด๋ฆฌ ์์ - ์น MVC ๊ฐ๋ฐ
ยท
๐ฅ Web/โ
Back-end | Spring
1. ํ์ ์น ๊ธฐ๋ฅ - ํ ํ๋ฉด ์ถ๊ฐ localhost:8080 ์ผ๋ก ํธ์ถ container์์ ๋ค์ง localhost:8080/ < ์ปจํธ๋กค๋ฌ ์์ ์ฐ๊ฒฐ! package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HomeController { @GetMapping("/") public String Home() { return "home"; } } 2. ํ์ ์น ๊ธฐ๋ฅ - ๋ฑ๋ก package hello.hellospring.controller; import he..