質問編集履歴

1

ソールコードを追記しました。

2021/11/02 09:58

投稿

dyxRZKg87iYEc4p
dyxRZKg87iYEc4p

スコア21

test CHANGED
File without changes
test CHANGED
@@ -218,234 +218,46 @@
218
218
 
219
219
 
220
220
 
221
- ```ここに言語名を入力
222
-
223
- pom.xml
224
-
225
-
226
-
227
- <?xml version="1.0" encoding="UTF-8"?>
228
-
229
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
230
-
231
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
232
-
233
- <modelVersion>4.0.0</modelVersion>
234
-
235
- <parent>
236
-
237
- <groupId>org.springframework.boot</groupId>
238
-
239
- <artifactId>spring-boot-starter-parent</artifactId>
240
-
241
- <version>2.5.6</version>
242
-
243
- <relativePath/> <!-- lookup parent from repository -->
244
-
245
- </parent>
246
-
247
- <groupId>com.beit_and_pear</groupId>
248
-
249
- <artifactId>EveryoneNote</artifactId>
250
-
251
- <version>1.0.0</version>
252
-
253
- <name>EveryoneNote</name>
254
-
255
- <description>EveryoneNote project for Spring Boot</description>
256
-
257
- <properties>
258
-
259
- <java.version>11</java.version>
260
-
261
- </properties>
262
-
263
- <dependencies>
264
-
265
- <dependency>
266
-
267
- <groupId>org.springframework.boot</groupId>
268
-
269
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
270
-
271
- </dependency>
272
-
273
- <dependency>
274
-
275
- <groupId>org.springframework.boot</groupId>
276
-
277
- <artifactId>spring-boot-starter-validation</artifactId>
278
-
279
- </dependency>
280
-
281
- <dependency>
282
-
283
- <groupId>org.springframework.boot</groupId>
284
-
285
- <artifactId>spring-boot-starter-web</artifactId>
286
-
287
- </dependency>
288
-
289
- <dependency>
290
-
291
- <groupId>org.mybatis.spring.boot</groupId>
292
-
293
- <artifactId>mybatis-spring-boot-starter</artifactId>
294
-
295
- <version>2.2.0</version>
296
-
297
- </dependency>
298
-
299
-
300
-
301
- <dependency>
302
-
303
- <groupId>org.springframework.boot</groupId>
304
-
305
- <artifactId>spring-boot-devtools</artifactId>
306
-
307
- <scope>runtime</scope>
308
-
309
- <optional>true</optional>
310
-
311
- </dependency>
312
-
313
- <dependency>
314
-
315
- <groupId>com.h2database</groupId>
316
-
317
- <artifactId>h2</artifactId>
318
-
319
- <scope>runtime</scope>
320
-
321
- </dependency>
322
-
323
- <dependency>
324
-
325
- <groupId>org.projectlombok</groupId>
326
-
327
- <artifactId>lombok</artifactId>
328
-
329
- <optional>true</optional>
330
-
331
- </dependency>
332
-
333
- <dependency>
334
-
335
- <groupId>org.springframework.boot</groupId>
336
-
337
- <artifactId>spring-boot-starter-test</artifactId>
338
-
339
- <scope>test</scope>
340
-
341
- </dependency>
342
-
343
- <dependency>
344
-
345
- <groupId>org.webjars</groupId>
346
-
347
- <artifactId>bootstrap</artifactId>
348
-
349
- <version>5.0.1</version>
350
-
351
- </dependency>
352
-
353
- <dependency>
354
-
355
- <groupId>org.webjars.npm</groupId>
356
-
357
- <artifactId>bootstrap-icons</artifactId>
358
-
359
- <version>1.5.0</version>
360
-
361
- </dependency>
362
-
363
- <dependency>
364
-
365
- <groupId>org.webjars</groupId>
366
-
367
- <artifactId>webjars-locator-core</artifactId>
368
-
369
- </dependency>
370
-
371
- <dependency>
372
-
373
- <groupId>nz.net.ultraq.thymeleaf</groupId>
374
-
375
- <artifactId>thymeleaf-layout-dialect</artifactId>
376
-
377
- </dependency>
378
-
379
- <dependency>
380
-
381
- <groupId>org.springframework.boot</groupId>
382
-
383
- <artifactId>spring-boot-starter-data-jpa</artifactId>
384
-
385
- </dependency>
386
-
387
- <dependency>
388
-
389
- <groupId>com.github.pagehelper</groupId>
390
-
391
- <artifactId>pagehelper-spring-boot-starter</artifactId>
392
-
393
- <version>1.3.0</version>
394
-
395
- </dependency>
396
-
397
- <dependency>
398
-
399
- <groupId>mysql</groupId>
400
-
401
- <artifactId>mysql-connector-java</artifactId>
402
-
403
- <scope>runtime</scope>
404
-
405
- </dependency>
406
-
407
- </dependencies>
408
-
409
-
410
-
411
- <build>
412
-
413
- <plugins>
414
-
415
- <plugin>
416
-
417
- <groupId>org.springframework.boot</groupId>
418
-
419
- <artifactId>spring-boot-maven-plugin</artifactId>
420
-
421
- <configuration>
422
-
423
- <excludes>
424
-
425
- <exclude>
426
-
427
- <groupId>org.projectlombok</groupId>
428
-
429
- <artifactId>lombok</artifactId>
430
-
431
- </exclude>
432
-
433
- </excludes>
434
-
435
- </configuration>
436
-
437
- </plugin>
438
-
439
- </plugins>
440
-
441
- </build>
442
-
443
-
444
-
445
- </project>
446
-
447
-
448
-
449
-
450
-
451
- ```
221
+ ### RDS停止後のエラーメッセージ
222
+
223
+
224
+
225
+ ```
226
+
227
+
228
+
229
+ Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
230
+
231
+ 2021-11-02 18:52:03.702 ERROR 2164 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter  :
232
+
233
+
234
+
235
+ ***************************
236
+
237
+ APPLICATION FAILED TO START
238
+
239
+ ***************************
240
+
241
+
242
+
243
+ Description:
244
+
245
+
246
+
247
+ Web server failed to start. Port 5000 was already in use.
248
+
249
+
250
+
251
+ Action:
252
+
253
+
254
+
255
+ Identify and stop the process that's listening on port 5000 or configure this application to listen on another port.
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+ ```