SpringBoot Railsからの移行処理


2.RailsをSpringBootに移行する

2-6 ビューの作成

②パッケージ・エクスプローラーから、右クリックで新規>その他>Web>HTMLファイルを選択し、show.htmlを作成し 以下のコードを入力します

show.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>掲示板</title>
</head>
<body>
<style>
.title {
    font-size: 17px;
    font-weight: bold;
    color: #2e82c1;
}
</style>
<p class="title">タイトル</p>
<p th:text ="${webnote.title}"></p>

<p class="title">内容</p>
<p th:text ="${webnote.content}"></p>

<p class="title">作成者</p>
<p th:text ="${webnote.createUser}"></p>

<form action="/">
    <input type="submit" value="戻 る"  />
</form>
</body>
</html>