質問編集履歴
1
コメントに対する追記のため
test
CHANGED
File without changes
|
test
CHANGED
@@ -203,3 +203,89 @@
|
|
203
203
|
長くなりましたが最後までお読みいただきありがとうございます。
|
204
204
|
|
205
205
|
よろしくお願いいたします。
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
##### 7/15 追記
|
210
|
+
|
211
|
+
LOVE-KANON様
|
212
|
+
|
213
|
+
ご指摘、ご教示くださりありがとうございます。
|
214
|
+
|
215
|
+
ご指摘の内容も受け止め勉強に励みたいと思います。
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
私自身言葉足らずだったところがあるので訂正いたします。申し訳ありません。
|
220
|
+
|
221
|
+
参考にした記事の通りに実装した経緯があり説明が抜けておりました。
|
222
|
+
|
223
|
+
実際に実装したところ、以下のようなエラーが出てしまい今の状況になった次第です。
|
224
|
+
|
225
|
+
```
|
226
|
+
|
227
|
+
// 一部抜粋
|
228
|
+
|
229
|
+
[main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor Initializing ExecutorService 'applicationTaskExecutor'
|
230
|
+
|
231
|
+
[main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
|
232
|
+
|
233
|
+
[main] ERROR com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Exception during pool initialization.
|
234
|
+
|
235
|
+
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
|
240
|
+
|
241
|
+
at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
|
242
|
+
|
243
|
+
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
|
244
|
+
|
245
|
+
..
|
246
|
+
|
247
|
+
..
|
248
|
+
|
249
|
+
at jp.go.DbConnectTest.main(DbConnectTest.java:22)
|
250
|
+
|
251
|
+
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
|
256
|
+
|
257
|
+
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
|
258
|
+
|
259
|
+
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
|
260
|
+
|
261
|
+
..
|
262
|
+
|
263
|
+
..
|
264
|
+
|
265
|
+
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:823)
|
266
|
+
|
267
|
+
... 48 more
|
268
|
+
|
269
|
+
Caused by: java.net.ConnectException: Connection refused: connect
|
270
|
+
|
271
|
+
at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
|
272
|
+
|
273
|
+
..
|
274
|
+
|
275
|
+
..
|
276
|
+
|
277
|
+
at com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:63)
|
278
|
+
|
279
|
+
... 51 more
|
280
|
+
|
281
|
+
..
|
282
|
+
|
283
|
+
..
|
284
|
+
|
285
|
+
```
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
こちらのエラーの解決方法として2つ目の参考にしたサイトの実装を追加したという状況です。
|
290
|
+
|
291
|
+
また、こちらのエラーの解決方法自体が見当違いでしたらご教示いただけますと助かります。
|