본문 바로가기
Spring

[스프링 입문] MVC와 템플릿 엔진

by 박성민 2021. 8. 28.
  • MVC: Model, View, Controller
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("hello")
    public String hello(Model model) {
        model.addAttribute("data", "spring!!");

        return "hello";
    }

    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model) {
        model.addAttribute("name", name);
        return "hello-template";
    }

}

(HelloController.java)

<html xmlns:th="http://www.thymeleaf.org">
<body>
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>

(resources/templates/hello-template.html)

  • p 태그 안의 문자열은 서버 구동 없이 직접 파일만 실행할 때 표시되는 문자열입니다.

2
(접속 화면)

MVC, 템플릿 엔진 이미지

1

참조

댓글