ViewPreferenceパラメータ


Welcomeページの作成


src->プライマリ->リソース->スタティック>右クリック->新しいファイル
index.htmlを作成します.
これがウェルカムページです.
<!doctype html>
<html>
<head>
    <title>This is the title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>
次にlocalhost:8080に入ります

ページを生成!
前の春ioという名前のサイトに入り、project->springboot->learn->リファレンスdocに接続します.

ではWelcomepageを作る方法が出てきます.
開発者は、ドキュメントサイト情報の検索方法を理解する必要があります.
上まで静的ページです.ファイルをWebブラウザに直接渡すことです.今は別のものを使います

Thymeleafテンプレートエンジン


Webapplicationでは、最初のエントリポイントはcontrollerです.
src -> main -> java -> hello.hellospring->右ボタン->package->hello.hellospring.controller
次に、コントローラはjava class->HelloControllerを作成します.
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.servlet.tags.EditorAwareTag;

@Controller
public class HelloController {

    @GetMapping("hello")
    public String hello(Model model)
    {
        model.addAttribute("data", "hello!");
        return "hello";
    }
}
Springはコメントとして@Controllerと命名する必要があります.
@getMapping("hello")の意味は
localhost:8080/hello<-helloを表す.
MVCのMはモデルです.
model.addAttribute("data", "hello!");
データハロー!意味はこうです.
次にresources->templates->newfile->hello.htmlを作成します.
<!doctype html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>This is the title of the webpage!</title>
</head>
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
</body>
</html>
ここでthは胸腺ピリジンの意味です.
では.
HelloControllerからモデルへ.addAttribute("data", "hello!");
return "hello"
デフォルトでは、templatesフォルダでhelloというファイルを検索し、データ値helloとして使用します.挿入してhelloです.htmlはthymeleafテンプレートで処理されます.