百里香を味わう(intelliJ)


賛美詩とは何ですか。


thymeleafはView Template Engineです.
コントローラから送信されたデータを使用してダイナミックページを作成できます.
thymeleafコマンドはタグのプロパティとして使用でき、htmlファイルで使用できます.

Thymeleaf Dependency


Maven(pom.xml)

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

Gradle(build.gradle)

dependencies {
...
	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
	}
▶プロジェクト作成時に追加を選択しなかった.

実習


VO



Mapper



interface



controller



Html



▲th:各属性で繰り返し処理可能.
th:textは、タグ内のテキストを渡された値として出力します.

結果