2.MVCに基づくプログラム作成
2-6 ビューからのデータ入力
・HTMLの入力領域を設定して、データの入力を行うプログラムを作成します。
①index.htmlを以下のように修正します。
<body> <h1>Demo Page</h1> <p th:text="${msg}"></p> <form method="post" action="/" > <input type="text" name="text1" th:value="${value}" > <input type="submit" value="実行" > </form> </body>