SpringBoot入門


2.MVCに基づくプログラム作成

2-3 ビューの処理(HTMLの表示)

④今回はテンプレートエンジンにthymeleaf(タイムリーフ)を使用しますので、pom.xmlに 以下の記述を追加します

(途中略) <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> (以下略)