質問編集履歴
3
誤字を直しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -280,7 +280,7 @@
|
|
280
280
|
|
281
281
|
|
282
282
|
|
283
|
-
バージョンについては、自
|
283
|
+
バージョンについては、自信が無いですが以下です。
|
284
284
|
|
285
285
|
Java: 1.8
|
286
286
|
|
2
バージョンについても分かる範囲で記載しました。念の為、IDEの画像も添付しておきます。
test
CHANGED
File without changes
|
test
CHANGED
@@ -278,4 +278,20 @@
|
|
278
278
|
|
279
279
|
あと、念の為、ソースコードを[GitHub](https://github.com/Megafriday/demo)にアップロードしました。
|
280
280
|
|
281
|
+
|
282
|
+
|
283
|
+
バージョンについては、自身が無いですが以下です。
|
284
|
+
|
285
|
+
Java: 1.8
|
286
|
+
|
287
|
+
Spring Boot:2.1.2.RELEASE
|
288
|
+
|
289
|
+
Thymeleaf:3.0.11.RELEASE
|
290
|
+
|
291
|
+
![Maven依存関係です。](0ecf569ee5f3550e033d71d60256fc08.jpeg)
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
|
296
|
+
|
281
297
|
どこが間違っているか、教えて頂けたら嬉しいです。
|
1
情報の追加の依頼を頂きました。pom.xmlの内容を追加致しました。あと念ため、GitHubにファイルもアップロードしました。どうぞ宜しくお願いいたします。
test
CHANGED
File without changes
|
test
CHANGED
@@ -149,3 +149,133 @@
|
|
149
149
|
ところが、常に「#fields.hasErrors('name')」がfalseであるため、エラーメッセージが出力されません。
|
150
150
|
|
151
151
|
どこに誤りがあるのか教えてください。
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
**追記です。**
|
156
|
+
|
157
|
+
pom.xmlです。
|
158
|
+
|
159
|
+
```XML
|
160
|
+
|
161
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
162
|
+
|
163
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
164
|
+
|
165
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
166
|
+
|
167
|
+
<modelVersion>4.0.0</modelVersion>
|
168
|
+
|
169
|
+
<parent>
|
170
|
+
|
171
|
+
<groupId>org.springframework.boot</groupId>
|
172
|
+
|
173
|
+
<artifactId>spring-boot-starter-parent</artifactId>
|
174
|
+
|
175
|
+
<version>2.1.2.RELEASE</version>
|
176
|
+
|
177
|
+
<relativePath/> <!-- lookup parent from repository -->
|
178
|
+
|
179
|
+
</parent>
|
180
|
+
|
181
|
+
<groupId>com.example</groupId>
|
182
|
+
|
183
|
+
<artifactId>demo</artifactId>
|
184
|
+
|
185
|
+
<version>0.0.1-SNAPSHOT</version>
|
186
|
+
|
187
|
+
<packaging>war</packaging>
|
188
|
+
|
189
|
+
<name>demo</name>
|
190
|
+
|
191
|
+
<description>Demo project for Spring Boot</description>
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
<properties>
|
196
|
+
|
197
|
+
<java.version>1.8</java.version>
|
198
|
+
|
199
|
+
</properties>
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
<dependencies>
|
204
|
+
|
205
|
+
<dependency>
|
206
|
+
|
207
|
+
<groupId>org.springframework.boot</groupId>
|
208
|
+
|
209
|
+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
210
|
+
|
211
|
+
</dependency>
|
212
|
+
|
213
|
+
<dependency>
|
214
|
+
|
215
|
+
<groupId>org.springframework.boot</groupId>
|
216
|
+
|
217
|
+
<artifactId>spring-boot-starter-web</artifactId>
|
218
|
+
|
219
|
+
</dependency>
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
<dependency>
|
224
|
+
|
225
|
+
<groupId>org.projectlombok</groupId>
|
226
|
+
|
227
|
+
<artifactId>lombok</artifactId>
|
228
|
+
|
229
|
+
<optional>true</optional>
|
230
|
+
|
231
|
+
</dependency>
|
232
|
+
|
233
|
+
<dependency>
|
234
|
+
|
235
|
+
<groupId>org.springframework.boot</groupId>
|
236
|
+
|
237
|
+
<artifactId>spring-boot-starter-tomcat</artifactId>
|
238
|
+
|
239
|
+
<scope>provided</scope>
|
240
|
+
|
241
|
+
</dependency>
|
242
|
+
|
243
|
+
<dependency>
|
244
|
+
|
245
|
+
<groupId>org.springframework.boot</groupId>
|
246
|
+
|
247
|
+
<artifactId>spring-boot-starter-test</artifactId>
|
248
|
+
|
249
|
+
<scope>test</scope>
|
250
|
+
|
251
|
+
</dependency>
|
252
|
+
|
253
|
+
</dependencies>
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
<build>
|
258
|
+
|
259
|
+
<plugins>
|
260
|
+
|
261
|
+
<plugin>
|
262
|
+
|
263
|
+
<groupId>org.springframework.boot</groupId>
|
264
|
+
|
265
|
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
266
|
+
|
267
|
+
</plugin>
|
268
|
+
|
269
|
+
</plugins>
|
270
|
+
|
271
|
+
</build>
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
</project>
|
276
|
+
|
277
|
+
```
|
278
|
+
|
279
|
+
あと、念の為、ソースコードを[GitHub](https://github.com/Megafriday/demo)にアップロードしました。
|
280
|
+
|
281
|
+
どこが間違っているか、教えて頂けたら嬉しいです。
|