Spring Boot/1. SpringBoot 입문 (1) 썸네일형 리스트형 1. Controller return String @Controller public class HelloController { @GetMapping("hello") public String hello(Model model) { model.addAttribute("data", "hello!!"); return "hello"; } } 컨트롤러의 return값이 String인 경우 Spring의 viewResolver가 해당 String으로 명명된 resources/template/string.html파일을 찾아 매핑한다. 이전 1 다음