JavaのWebアプリケーション開発フレームワークによる、Webサイト開発の顛末記です。

EclipseのMavenを使った、Spring-MVC、Thymeleaf、MyBatis 等のプログラミングテクニックを、
備忘録的に記録しています。実際に動くソースコードを多用して説明していますので、
これからEclipseや、Spring-MVCを始めたいと思っている人にとって、少しでも参考になれば幸いです。
Spring-MVCの散歩道 > Spring Boot の小径 > 第3歩 Spring Boot 初めの一歩 > Hello Spring Boot !!

<!DOCTYPE html>

<!-- xmlnsは、Thymeleafのおまじないです -->
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Hello Spring Boot</title>
<meta charset="UTF-8" />
</head>

<body>
<table>
    <tr>
        <td th:text="${discription}">Hello Spring Boot</td>
    </tr>
</table>
</body>
</html>