환경설정1 (프로젝트 환경설정) View 환경설정 Welcome Page 만들기 main/java/hello.hellospring/controller/HelloController package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HelloController { @GetMapping("hello") public String hello(Model model){ model.addAttribute("data","hello!!"); return.. 2021. 9. 20. 이전 1 다음