質問編集履歴
1
画面遷移のエラーについて
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
SpringSecurityでログイン認証を行った後、トップ画面(top.html)に遷移できず、500のエラーが出てしまう。
|
5
|
+
SpringSecurityでログイン認証を行った後、トップ画面(top.html)から編集画面(edit)に遷移できず、500のエラーが出てしまう。
|
6
6
|
|
7
7
|
|
8
8
|
|
@@ -12,11 +12,11 @@
|
|
12
12
|
|
13
13
|
```
|
14
14
|
|
15
|
-
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/t
|
15
|
+
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/edit.html]")] with root cause
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
一度ログインできていたのですが、
|
19
|
+
一度ログインできていたのですが、遷移先のリンクをhtmlに追記した辺りから急にエラーが出るようになりました。
|
20
20
|
|
21
21
|
|
22
22
|
|
@@ -102,6 +102,8 @@
|
|
102
102
|
|
103
103
|
registry.addViewController("/").setViewName("top");
|
104
104
|
|
105
|
+
registry.addViewController("edit").setViewName("edit");
|
106
|
+
|
105
107
|
}
|
106
108
|
|
107
109
|
}
|
@@ -150,6 +152,8 @@
|
|
150
152
|
|
151
153
|
<h1 th:inline>人材管理システム</h1>
|
152
154
|
|
155
|
+
<a th:href="@{/edit}">編集</a>
|
156
|
+
|
153
157
|
<form th:action="@{/logout}" method="post">
|
154
158
|
|
155
159
|
<input type="submit" value="ログアウト" />
|
@@ -174,6 +178,8 @@
|
|
174
178
|
|
175
179
|
セッションが残っているのかとも思ったのですが、chromeのシークレットでもエラーとなります。
|
176
180
|
|
181
|
+
edit.htmlはtop.htmlのvalueの値が変わっているのみです。
|
182
|
+
|
177
183
|
|
178
184
|
|
179
185
|
### 補足情報(FW/ツールのバージョンなど)
|