![thumbnail](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fc5mDio%2Fbtq5nfyWG6W%2F71GHBrLrkfaImYieEGWkD1%2Fimg.png)
[Spring Boot] 4. InteliJ 정적 컨텐츠 방식, MVC, API
2021. 5. 21. 00:01
스프링
정적 컨텐츠 방식 static - hello-static.html 생성 hello-static.html 정적 컨텐츠 입니다. MVC 방식 HelloController package hello.hellospring.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 HelloController { @GetMapping("hell..