728x90 자바 spring1 [Spring] thymeleaf 템플릿엔진 동작 과정 MVC 패턴!! # HelloController @Controller public class HelloController { @GetMapping("hello") // web application에서 localhost:8080 뒤에 /hello를 붙인 주소가 들어오면 아래 hello 함수를 호출해준다 public String hello(Model model){ model.addAttribute("data","hello!!"); // model에서 data의 값을 hello!!로 두었다 return "hello"; // templates에서 hello.html을 반환해준다. } } # hello.html 안녕하세요. 손님 devtools를 설치하면 html 파일 컴파일만 하면 된다고 하시는데 어떤 블로그 .. Back-End/Spring 2021. 7. 7. 이전 1 다음 728x90