質問編集履歴
2
開発環境のバージョン説明
test
CHANGED
File without changes
|
test
CHANGED
@@ -152,9 +152,209 @@
|
|
152
152
|
|
153
153
|
```
|
154
154
|
|
155
|
-
```
|
155
|
+
```xml
|
156
|
+
|
156
|
-
|
157
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
158
|
+
|
159
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
160
|
+
|
161
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
162
|
+
|
163
|
+
<modelVersion>4.0.0</modelVersion>
|
164
|
+
|
165
|
+
<parent>
|
166
|
+
|
167
|
+
<groupId>org.springframework.boot</groupId>
|
168
|
+
|
169
|
+
<artifactId>spring-boot-starter-parent</artifactId>
|
170
|
+
|
171
|
+
<version>2.2.12.RELEASE</version>
|
172
|
+
|
173
|
+
<relativePath/> <!-- lookup parent from repository -->
|
174
|
+
|
175
|
+
</parent>
|
176
|
+
|
177
|
+
<groupId>jp.kuroda.spring</groupId>
|
178
|
+
|
179
|
+
<artifactId>makeSurvey</artifactId>
|
180
|
+
|
181
|
+
<version>0.0.1-SNAPSHOT</version>
|
182
|
+
|
183
|
+
<name>makeSurvey</name>
|
184
|
+
|
185
|
+
<description>Demo project for Spring Boot</description>
|
186
|
+
|
187
|
+
<properties>
|
188
|
+
|
189
|
+
<java.version>1.8</java.version>
|
190
|
+
|
191
|
+
</properties>
|
192
|
+
|
193
|
+
<dependencies>
|
194
|
+
|
195
|
+
<dependency>
|
196
|
+
|
197
|
+
<groupId>org.springframework.boot</groupId>
|
198
|
+
|
199
|
+
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
200
|
+
|
201
|
+
</dependency>
|
202
|
+
|
203
|
+
<dependency>
|
204
|
+
|
205
|
+
<groupId>org.springframework.boot</groupId>
|
206
|
+
|
207
|
+
<artifactId>spring-boot-starter-security</artifactId>
|
208
|
+
|
209
|
+
</dependency>
|
210
|
+
|
211
|
+
<dependency>
|
212
|
+
|
213
|
+
<groupId>org.springframework.boot</groupId>
|
214
|
+
|
215
|
+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
216
|
+
|
217
|
+
</dependency>
|
218
|
+
|
219
|
+
<dependency>
|
220
|
+
|
221
|
+
<groupId>org.springframework.boot</groupId>
|
222
|
+
|
223
|
+
<artifactId>spring-boot-starter-web</artifactId>
|
224
|
+
|
225
|
+
</dependency>
|
226
|
+
|
227
|
+
<dependency>
|
228
|
+
|
229
|
+
<groupId>org.thymeleaf.extras</groupId>
|
230
|
+
|
231
|
+
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
232
|
+
|
233
|
+
</dependency>
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
<dependency>
|
238
|
+
|
239
|
+
<groupId>org.springframework.boot</groupId>
|
240
|
+
|
241
|
+
<artifactId>spring-boot-devtools</artifactId>
|
242
|
+
|
243
|
+
<scope>runtime</scope>
|
244
|
+
|
245
|
+
<optional>true</optional>
|
246
|
+
|
247
|
+
</dependency>
|
248
|
+
|
249
|
+
<dependency>
|
250
|
+
|
251
|
+
<groupId>com.h2database</groupId>
|
252
|
+
|
253
|
+
<artifactId>h2</artifactId>
|
254
|
+
|
255
|
+
<scope>runtime</scope>
|
256
|
+
|
257
|
+
</dependency>
|
258
|
+
|
259
|
+
<dependency>
|
260
|
+
|
261
|
+
<groupId>mysql</groupId>
|
262
|
+
|
263
|
+
<artifactId>mysql-connector-java</artifactId>
|
264
|
+
|
265
|
+
<scope>runtime</scope>
|
266
|
+
|
267
|
+
</dependency>
|
268
|
+
|
269
|
+
<dependency>
|
270
|
+
|
271
|
+
<groupId>org.projectlombok</groupId>
|
272
|
+
|
273
|
+
<artifactId>lombok</artifactId>
|
274
|
+
|
275
|
+
<optional>true</optional>
|
276
|
+
|
277
|
+
</dependency>
|
278
|
+
|
279
|
+
<dependency>
|
280
|
+
|
281
|
+
<groupId>org.springframework.boot</groupId>
|
282
|
+
|
283
|
+
<artifactId>spring-boot-starter-test</artifactId>
|
284
|
+
|
285
|
+
<scope>test</scope>
|
286
|
+
|
287
|
+
<exclusions>
|
288
|
+
|
289
|
+
<exclusion>
|
290
|
+
|
291
|
+
<groupId>org.junit.vintage</groupId>
|
292
|
+
|
293
|
+
<artifactId>junit-vintage-engine</artifactId>
|
294
|
+
|
295
|
+
</exclusion>
|
296
|
+
|
297
|
+
</exclusions>
|
298
|
+
|
299
|
+
</dependency>
|
300
|
+
|
301
|
+
<dependency>
|
302
|
+
|
303
|
+
<groupId>org.springframework.security</groupId>
|
304
|
+
|
305
|
+
<artifactId>spring-security-test</artifactId>
|
306
|
+
|
307
|
+
<scope>test</scope>
|
308
|
+
|
309
|
+
</dependency>
|
310
|
+
|
311
|
+
<dependency>
|
312
|
+
|
313
|
+
<groupId>nz.net.ultraq.thymeleaf</groupId>
|
314
|
+
|
315
|
+
<artifactId>thymeleaf-layout-dialect</artifactId>
|
316
|
+
|
317
|
+
</dependency>
|
318
|
+
|
319
|
+
</dependencies>
|
320
|
+
|
321
|
+
|
322
|
+
|
157
|
-
|
323
|
+
<build>
|
324
|
+
|
325
|
+
<plugins>
|
326
|
+
|
327
|
+
<plugin>
|
328
|
+
|
329
|
+
<groupId>org.springframework.boot</groupId>
|
330
|
+
|
331
|
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
332
|
+
|
333
|
+
<configuration>
|
334
|
+
|
335
|
+
<excludes>
|
336
|
+
|
337
|
+
<exclude>
|
338
|
+
|
339
|
+
<groupId>org.projectlombok</groupId>
|
340
|
+
|
341
|
+
<artifactId>lombok</artifactId>
|
342
|
+
|
343
|
+
</exclude>
|
344
|
+
|
345
|
+
</excludes>
|
346
|
+
|
347
|
+
</configuration>
|
348
|
+
|
349
|
+
</plugin>
|
350
|
+
|
351
|
+
</plugins>
|
352
|
+
|
353
|
+
</build>
|
354
|
+
|
355
|
+
|
356
|
+
|
357
|
+
</project>
|
158
358
|
|
159
359
|
```
|
160
360
|
|
@@ -170,8 +370,6 @@
|
|
170
370
|
|
171
371
|
Spring Tool Suite 4
|
172
372
|
|
173
|
-
version2.2.12.RELEASE
|
174
|
-
|
175
373
|
|
176
374
|
|
177
375
|
phpMyAdmin
|
1
開発環境のバージョン説明
test
CHANGED
File without changes
|
test
CHANGED
@@ -152,7 +152,11 @@
|
|
152
152
|
|
153
153
|
```
|
154
154
|
|
155
|
+
```ここに言語を入力
|
155
156
|
|
157
|
+
コード
|
158
|
+
|
159
|
+
```
|
156
160
|
|
157
161
|
### 補足情報(FW/ツールのバージョンなど)
|
158
162
|
|
@@ -162,11 +166,17 @@
|
|
162
166
|
|
163
167
|
Java 8
|
164
168
|
|
169
|
+
|
170
|
+
|
165
171
|
Spring Tool Suite 4
|
166
172
|
|
167
|
-
|
173
|
+
version2.2.12.RELEASE
|
168
174
|
|
169
175
|
|
176
|
+
|
177
|
+
phpMyAdmin
|
178
|
+
|
179
|
+
サーバのバージョン: 10.4.17-MariaDB - mariadb.org binary distribution
|
170
180
|
|
171
181
|
|
172
182
|
|