質問編集履歴
1
ソールコードを追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -108,119 +108,25 @@
|
|
108
108
|
|
109
109
|
|
110
110
|
|
111
|
-
|
111
|
+
### RDS停止後のエラーメッセージ
|
112
|
-
pom.xml
|
113
112
|
|
114
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
115
|
-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
116
|
-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
117
|
-
<modelVersion>4.0.0</modelVersion>
|
118
|
-
|
113
|
+
```
|
119
|
-
<groupId>org.springframework.boot</groupId>
|
120
|
-
<artifactId>spring-boot-starter-parent</artifactId>
|
121
|
-
<version>2.5.6</version>
|
122
|
-
<relativePath/> <!-- lookup parent from repository -->
|
123
|
-
</parent>
|
124
|
-
<groupId>com.beit_and_pear</groupId>
|
125
|
-
<artifactId>EveryoneNote</artifactId>
|
126
|
-
<version>1.0.0</version>
|
127
|
-
<name>EveryoneNote</name>
|
128
|
-
<description>EveryoneNote project for Spring Boot</description>
|
129
|
-
<properties>
|
130
|
-
<java.version>11</java.version>
|
131
|
-
</properties>
|
132
|
-
<dependencies>
|
133
|
-
<dependency>
|
134
|
-
<groupId>org.springframework.boot</groupId>
|
135
|
-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
136
|
-
</dependency>
|
137
|
-
<dependency>
|
138
|
-
<groupId>org.springframework.boot</groupId>
|
139
|
-
<artifactId>spring-boot-starter-validation</artifactId>
|
140
|
-
</dependency>
|
141
|
-
<dependency>
|
142
|
-
<groupId>org.springframework.boot</groupId>
|
143
|
-
<artifactId>spring-boot-starter-web</artifactId>
|
144
|
-
</dependency>
|
145
|
-
<dependency>
|
146
|
-
<groupId>org.mybatis.spring.boot</groupId>
|
147
|
-
<artifactId>mybatis-spring-boot-starter</artifactId>
|
148
|
-
<version>2.2.0</version>
|
149
|
-
</dependency>
|
150
114
|
|
151
|
-
<dependency>
|
152
|
-
<groupId>org.springframework.boot</groupId>
|
153
|
-
<artifactId>spring-boot-devtools</artifactId>
|
154
|
-
<scope>runtime</scope>
|
155
|
-
<optional>true</optional>
|
156
|
-
</dependency>
|
157
|
-
<dependency>
|
158
|
-
<groupId>com.h2database</groupId>
|
159
|
-
<artifactId>h2</artifactId>
|
160
|
-
<scope>runtime</scope>
|
161
|
-
</dependency>
|
162
|
-
<dependency>
|
163
|
-
<groupId>org.projectlombok</groupId>
|
164
|
-
<artifactId>lombok</artifactId>
|
165
|
-
<optional>true</optional>
|
166
|
-
</dependency>
|
167
|
-
<dependency>
|
168
|
-
<groupId>org.springframework.boot</groupId>
|
169
|
-
<artifactId>spring-boot-starter-test</artifactId>
|
170
|
-
<scope>test</scope>
|
171
|
-
</dependency>
|
172
|
-
<dependency>
|
173
|
-
<groupId>org.webjars</groupId>
|
174
|
-
<artifactId>bootstrap</artifactId>
|
175
|
-
<version>5.0.1</version>
|
176
|
-
</dependency>
|
177
|
-
<dependency>
|
178
|
-
<groupId>org.webjars.npm</groupId>
|
179
|
-
<artifactId>bootstrap-icons</artifactId>
|
180
|
-
<version>1.5.0</version>
|
181
|
-
</dependency>
|
182
|
-
<dependency>
|
183
|
-
<groupId>org.webjars</groupId>
|
184
|
-
<artifactId>webjars-locator-core</artifactId>
|
185
|
-
</dependency>
|
186
|
-
<dependency>
|
187
|
-
<groupId>nz.net.ultraq.thymeleaf</groupId>
|
188
|
-
<artifactId>thymeleaf-layout-dialect</artifactId>
|
189
|
-
</dependency>
|
190
|
-
<dependency>
|
191
|
-
<groupId>org.springframework.boot</groupId>
|
192
|
-
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
193
|
-
</dependency>
|
194
|
-
<dependency>
|
195
|
-
<groupId>com.github.pagehelper</groupId>
|
196
|
-
|
115
|
+
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
|
197
|
-
<version>1.3.0</version>
|
198
|
-
</dependency>
|
199
|
-
<dependency>
|
200
|
-
<groupId>mysql</groupId>
|
201
|
-
|
116
|
+
[2m2021-11-02 18:52:03.702[0;39m [31mERROR[0;39m [35m2164[0;39m [2m---[0;39m [2m[ restartedMain][0;39m [36mo.s.b.d.LoggingFailureAnalysisReporter [0;39m [2m:[0;39m
|
202
|
-
<scope>runtime</scope>
|
203
|
-
</dependency>
|
204
|
-
</dependencies>
|
205
117
|
|
206
|
-
<build>
|
207
|
-
<plugins>
|
208
|
-
<plugin>
|
209
|
-
<groupId>org.springframework.boot</groupId>
|
210
|
-
<artifactId>spring-boot-maven-plugin</artifactId>
|
211
|
-
<configuration>
|
212
|
-
<excludes>
|
213
|
-
<exclude>
|
214
|
-
<groupId>org.projectlombok</groupId>
|
215
|
-
<artifactId>lombok</artifactId>
|
216
|
-
</exclude>
|
217
|
-
</excludes>
|
218
|
-
|
118
|
+
***************************
|
219
|
-
</plugin>
|
220
|
-
|
119
|
+
APPLICATION FAILED TO START
|
221
|
-
|
120
|
+
***************************
|
222
121
|
|
223
|
-
|
122
|
+
Description:
|
224
123
|
|
225
|
-
|
124
|
+
Web server failed to start. Port 5000 was already in use.
|
125
|
+
|
126
|
+
Action:
|
127
|
+
|
128
|
+
Identify and stop the process that's listening on port 5000 or configure this application to listen on another port.
|
129
|
+
|
130
|
+
|
131
|
+
|
226
132
|
```
|