質問編集履歴
3
pom追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -202,9 +202,161 @@
|
|
202
202
|
|
203
203
|
|
204
204
|
|
205
|
-
|
205
|
+
pomです↓
|
206
|
+
|
207
|
+
|
208
|
+
|
206
|
-
|
209
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
210
|
+
|
211
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
212
|
+
|
213
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
214
|
+
|
215
|
+
<modelVersion>4.0.0</modelVersion>
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
<groupId>mrs</groupId>
|
220
|
+
|
221
|
+
<artifactId>mrs</artifactId>
|
222
|
+
|
223
|
+
<version>0.0.1-SNAPSHOT</version>
|
224
|
+
|
225
|
+
<packaging>jar</packaging>
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
<name>mrs</name>
|
230
|
+
|
231
|
+
<description>Demo project for Spring Boot</description>
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
<parent>
|
236
|
+
|
237
|
+
<groupId>org.springframework.boot</groupId>
|
238
|
+
|
239
|
+
<artifactId>spring-boot-starter-parent</artifactId>
|
240
|
+
|
241
|
+
<version>1.4.3.RELEASE</version>
|
242
|
+
|
243
|
+
<relativePath/> <!-- lookup parent from repository -->
|
244
|
+
|
245
|
+
</parent>
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
<properties>
|
250
|
+
|
251
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
252
|
+
|
253
|
+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
254
|
+
|
255
|
+
<java.version>1.8</java.version>
|
256
|
+
|
207
|
-
|
257
|
+
</properties>
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
<dependencies>
|
262
|
+
|
263
|
+
<dependency>
|
264
|
+
|
265
|
+
<groupId>org.springframework</groupId>
|
266
|
+
|
267
|
+
<artifactId>spring-web</artifactId>
|
268
|
+
|
269
|
+
</dependency>
|
270
|
+
|
271
|
+
<dependency>
|
272
|
+
|
273
|
+
<groupId>org.springframework.boot</groupId>
|
274
|
+
|
275
|
+
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
276
|
+
|
277
|
+
</dependency>
|
278
|
+
|
279
|
+
|
280
|
+
|
281
|
+
<dependency>
|
282
|
+
|
283
|
+
<groupId>mysql</groupId>
|
284
|
+
|
285
|
+
<artifactId>mysql-connector-java</artifactId>
|
286
|
+
|
287
|
+
<scope>runtime</scope>
|
288
|
+
|
289
|
+
</dependency>
|
290
|
+
|
291
|
+
<dependency>
|
292
|
+
|
293
|
+
<groupId>org.springframework.boot</groupId>
|
294
|
+
|
295
|
+
<artifactId>spring-boot-starter-test</artifactId>
|
296
|
+
|
297
|
+
<scope>test</scope>
|
298
|
+
|
299
|
+
</dependency>
|
300
|
+
|
301
|
+
<dependency>
|
302
|
+
|
303
|
+
<groupId>org.thymeleaf.extras</groupId>
|
304
|
+
|
305
|
+
<artifactId>thymeleaf-extras-java8time</artifactId>
|
306
|
+
|
307
|
+
<version>2.1.0.RELEASE</version>
|
308
|
+
|
309
|
+
</dependency>
|
310
|
+
|
311
|
+
<dependency>
|
312
|
+
|
313
|
+
<groupId>org.springframework.boot</groupId>
|
314
|
+
|
315
|
+
<artifactId>spring-boot-starter-data-solr</artifactId>
|
316
|
+
|
317
|
+
</dependency>
|
318
|
+
|
319
|
+
<dependency>
|
320
|
+
|
321
|
+
<groupId>org.springframework.boot</groupId>
|
322
|
+
|
323
|
+
<artifactId>spring-boot-starter-web</artifactId>
|
324
|
+
|
325
|
+
</dependency>
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
</dependencies>
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
<build>
|
334
|
+
|
335
|
+
<plugins>
|
336
|
+
|
337
|
+
<plugin>
|
338
|
+
|
339
|
+
<groupId>org.springframework.boot</groupId>
|
340
|
+
|
341
|
+
<artifactId>spring-boot-maven-plugin</artifactId>
|
342
|
+
|
343
|
+
</plugin>
|
344
|
+
|
345
|
+
</plugins>
|
346
|
+
|
347
|
+
</build>
|
348
|
+
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
</project>
|
354
|
+
|
355
|
+
|
356
|
+
|
357
|
+
|
358
|
+
|
359
|
+
|
208
360
|
|
209
361
|
|
210
362
|
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
-
![イメージ説明](e1bca265599f6818c867697da8b5c386.png)
|
1
|
+
![イメージ説明](e1bca265599f6818c867697da8b5c386.png)
|
2
|
-
|
2
|
+
|
3
|
-
|
3
|
+
※フォルダ構成です。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
|
4
8
|
|
5
9
|
springをApplicationのメインメッソッドで実行したのですがhttp://localhost:8080/roomsにアクセスしても404が返ってくるだけです。
|
6
10
|
|
1
フォルダ構成追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
###前提・実現したいこと
|
1
|
+
![イメージ説明](e1bca265599f6818c867697da8b5c386.png)###前提・実現したいこと
|
2
2
|
|
3
3
|
ここに質問したいことを詳細に書いてください
|
4
4
|
|