SpringBoot入門


5-2 掲示板への認証機能の追加

⑨new.htmlのアクションを以下の通り修正します

【修正前】

<form method="post" action="/create" th:object="${bbs}">

【修正後】

<form method="post" th:action="@{/create}" th:object="${bbs}">

⑩new.htmlのアクションを以下の通り修正します

【修正前】

<form action="/delete" method="post">

【修正後】

<form th:action="@{/delete}" method="post">