[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..