質問編集履歴
3
エラー内容の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
*追記:
|
15
|
+
*追記:エラーメッセージを追記しました。エラーにある通り、create.htmlの38行目、CreateUserFormの36行目を見てみましたがどこが違っているのかわかりません…
|
16
16
|
|
17
17
|
(下のはログインIDのチェック箇所をhtmlにてコメントアウトし、create.htmlの38行目を'*{passCheck}'に変えて試した結果です)
|
18
18
|
|
2
エラー内容の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
-
*追記:エラーメッセージを追記しました。エラーにある通り、create.htmlの38行目、CreateUserFormの36行目を見てみましたがどこが違っているのかわかりません…
|
15
|
+
*追記:コンソールにはエラーが出ていなかったのでエラーメッセージを追記しました。エラーにある通り、create.htmlの38行目、CreateUserFormの36行目を見てみましたがどこが違っているのかわかりません…
|
16
16
|
|
17
17
|
(下のはログインIDのチェック箇所をhtmlにてコメントアウトし、create.htmlの38行目を'*{passCheck}'に変えて試した結果です)
|
18
18
|
|
1
エラー内容の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,6 +10,14 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
+
|
14
|
+
|
15
|
+
*追記:エラーメッセージを追記しました。エラーにある通り、create.htmlの38行目、CreateUserFormの36行目を見てみましたがどこが違っているのかわかりません…
|
16
|
+
|
17
|
+
(下のはログインIDのチェック箇所をhtmlにてコメントアウトし、create.htmlの38行目を'*{passCheck}'に変えて試した結果です)
|
18
|
+
|
19
|
+
|
20
|
+
|
13
21
|
```
|
14
22
|
|
15
23
|
There was an unexpected error (type=Internal Server Error, status=500).
|
@@ -17,6 +25,60 @@
|
|
17
25
|
An error happened during template parsing (template: "class path resource [templates/users/create.html]")
|
18
26
|
|
19
27
|
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/users/create.html]")
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
(中略)
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "#fields.hasErrors('*{passCheck}')" (template: "users/create" - line 38, col 48)
|
36
|
+
|
37
|
+
at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393)
|
38
|
+
|
39
|
+
at org.attoparser.MarkupParser.parse(MarkupParser.java:257)
|
40
|
+
|
41
|
+
at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230)
|
42
|
+
|
43
|
+
... 52 more
|
44
|
+
|
45
|
+
Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "#fields.hasErrors('*{passCheck}')" (template: "users/create" - line 38, col 48)
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
(中略)
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
Caused by: org.springframework.beans.InvalidPropertyException: Invalid property 'passCheck' of bean class [...CreateUserForm]: Getter for property 'passCheck' threw exception; nested exception is java.lang.reflect.InvocationTargetException
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
(中略)
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
Caused by: java.lang.reflect.InvocationTargetException
|
62
|
+
|
63
|
+
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
64
|
+
|
65
|
+
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
66
|
+
|
67
|
+
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
68
|
+
|
69
|
+
at java.lang.reflect.Method.invoke(Method.java:498)
|
70
|
+
|
71
|
+
at org.springframework.beans.BeanWrapperImpl$BeanPropertyHandler.getValue(BeanWrapperImpl.java:308)
|
72
|
+
|
73
|
+
at org.springframework.beans.AbstractNestablePropertyAccessor.getPropertyValue(AbstractNestablePropertyAccessor.java:625)
|
74
|
+
|
75
|
+
... 98 more
|
76
|
+
|
77
|
+
Caused by: java.lang.NullPointerException
|
78
|
+
|
79
|
+
at ...CreateUserForm.isPassCheck(CreateUserForm.java:36)
|
80
|
+
|
81
|
+
... 104 more
|
20
82
|
|
21
83
|
```
|
22
84
|
|