5분 만에 Spring boot와 Thymleaf에서 Hello World

3128 단어 spring-boot
STS를 사용하고 있습니다.

절차









DemoController.java
package com.example.HelloThymleaf;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class DemoController {

    @RequestMapping("/")
    public String index(Model model) {
        model.addAttribute("msg", "Hello! Thymleaf!!");//Hello! Thymleaf!!はmsgへ格納し、index.htmlへ返します。
        return "index";
    }

}

index.html
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8" />
    <title>demo</title>
</head>
<body>
<p th:text="${msg}">ここの文字列は、実行時に ${msg} で置換されます。</p>
</body>
</html>



참조 링크

좋은 웹페이지 즐겨찾기