質問編集履歴

5

補足説明

2019/01/05 08:32

投稿

x-ryo
x-ryo

スコア14

test CHANGED
File without changes
test CHANGED
@@ -8,6 +8,10 @@
8
8
 
9
9
 
10
10
 
11
+ (データベースをmysqlではなくh2にすると可動します)
12
+
13
+
14
+
11
15
  sts3.9.6
12
16
 
13
17
  jdk1.8.0_131

4

ブラウザの画面削除

2019/01/05 08:32

投稿

x-ryo
x-ryo

スコア14

test CHANGED
File without changes
test CHANGED
@@ -318,24 +318,4 @@
318
318
 
319
319
 
320
320
 
321
- localhost:8080/test01にアクセスしてもエラー
322
-
323
- ```localhost:8080/test01にアクセスしてもエラー
324
-
325
- Whitelabel Error Page
326
-
327
- This application has no explicit mapping for /error, so you are seeing this as a fallback.
328
-
329
-
330
-
331
- Sat Jan 05 16:18:59 JST 2019
332
-
333
- There was an unexpected error (type=Internal Server Error, status=500).
334
-
335
- Could not open JPA EntityManager for transaction; nested exception is org.hibernate.exception.GenericJDBCException: Unable to acquire JDBC Connection
336
-
337
- ```
338
-
339
-
340
-
341
321
  ご教授のほどよろしくおねがいします。

3

コードの説明が抜けていたので追加

2019/01/05 07:36

投稿

x-ryo
x-ryo

スコア14

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
 
16
16
 
17
+ MainController.java
18
+
17
19
  ```MainController.java
18
20
 
19
21
  package com.example.demo;
@@ -52,6 +54,8 @@
52
54
 
53
55
 
54
56
 
57
+ Syain.java
58
+
55
59
  ```Syain.java
56
60
 
57
61
  package com.example.demo;
@@ -108,6 +112,8 @@
108
112
 
109
113
 
110
114
 
115
+ SyainRepository.java
116
+
111
117
  ```SyainRepository.java
112
118
 
113
119
  package com.example.demo;
@@ -124,6 +130,8 @@
124
130
 
125
131
 
126
132
 
133
+ application.properties
134
+
127
135
  ```application.properties
128
136
 
129
137
  spring.jpa.hibernate.ddl-auto=none
@@ -138,6 +146,8 @@
138
146
 
139
147
 
140
148
 
149
+ pom.xml
150
+
141
151
  ```pom.xml
142
152
 
143
153
  <?xml version="1.0" encoding="UTF-8"?>
@@ -248,6 +258,8 @@
248
258
 
249
259
 
250
260
 
261
+ xamppのmysqlに追加したddl
262
+
251
263
  ```xamppのmysqlに追加したddl
252
264
 
253
265
  CREATE TABLE `syain` (
@@ -272,6 +284,8 @@
272
284
 
273
285
 
274
286
 
287
+ 実行したところ springbootのコンソールにエラーが出力されている
288
+
275
289
  ```実行したところ springbootのコンソールにエラーが出力されている
276
290
 
277
291
  2019-01-05 11:17:52.394 INFO 1928 --- [ main] c.r.web.RiiruSystemApplication : Starting RiiruSystemApplication on Masaki-PC with PID 1928 (C:\Users\Masaki\Documents\workspace-sts-3.9.6.RELEASE\RiiruSystem\target\classes started by Masaki in C:\Users\Masaki\Documents\workspace-sts-3.9.6.RELEASE\RiiruSystem)
@@ -304,6 +318,8 @@
304
318
 
305
319
 
306
320
 
321
+ localhost:8080/test01にアクセスしてもエラー
322
+
307
323
  ```localhost:8080/test01にアクセスしてもエラー
308
324
 
309
325
  Whitelabel Error Page

2

ブラウザのエラーメッセージが間違えていた

2019/01/05 07:22

投稿

x-ryo
x-ryo

スコア14

test CHANGED
File without changes
test CHANGED
@@ -312,11 +312,11 @@
312
312
 
313
313
 
314
314
 
315
- Sat Jan 05 11:52:12 JST 2019
315
+ Sat Jan 05 16:18:59 JST 2019
316
-
316
+
317
- There was an unexpected error (type=Not Found, status=404).
317
+ There was an unexpected error (type=Internal Server Error, status=500).
318
-
318
+
319
- No message available
319
+ Could not open JPA EntityManager for transaction; nested exception is org.hibernate.exception.GenericJDBCException: Unable to acquire JDBC Connection
320
320
 
321
321
  ```
322
322
 

1

バージョン情報追加

2019/01/05 07:20

投稿

x-ryo
x-ryo

スコア14

test CHANGED
File without changes
test CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
 
4
4
 
5
+ spring bootのコンソールでcom.zaxxer.hikari.pool.HikariPoolという箇所でエラーとなっています。
6
+
7
+ 以下使用しているコードとエラーです。
8
+
9
+
10
+
11
+ sts3.9.6
12
+
13
+ jdk1.8.0_131
14
+
15
+
16
+
5
17
  ```MainController.java
6
18
 
7
19
  package com.example.demo;