回答編集履歴

2

application.confの書き方について修正

2019/01/22 08:17

投稿

tino1231
tino1231

スコア374

test CHANGED
@@ -1,34 +1,8 @@
1
- ebeanを使用するのに特にhikaricpの設定は不要に思が、
1
+ 環境が全く同じといわけはありませんが、
2
2
 
3
- 意図はあるのでしょうか?
3
+ 以下ようなconfの書き方MySQLに接続できることは確認できまた。
4
4
 
5
5
 
6
-
7
- [ebeanのサンプルプロジェクトのapplication.conf](https://github.com/playframework/play-java-ebean-example/blob/2.5.x/conf/application.conf)
8
-
9
-
10
-
11
-
12
-
13
- hikaricpの設定をする場合は、
14
-
15
- ```conf
16
-
17
- db.default.hikaricp.driverClassName=com.mysql.cp.jdbc.Driver
18
-
19
- db.default.hikaricp.username=root
20
-
21
- db.default.hikaricp.password="nfgwe4706"
22
-
23
- db.default.hikaricp.jdbcUrl="jdbc:mysql://localhost:3306/sample_db"
24
-
25
- db.default.hikaricp.minimumIdle=${fixedConnectionPool}
26
-
27
- db.default.hikaricp.maximumPoolSize=${fixedConnectionPool}
28
-
29
- ```
30
-
31
-
32
6
 
33
7
  ```conf
34
8
 
@@ -36,16 +10,28 @@
36
10
 
37
11
  prototype {
38
12
 
39
- hikaricp.driverClassName=com.mysql.cp.jdbc.Driver
13
+ }
40
14
 
41
- hikaricp.minimumIdle=${fixedConnectionPool}
15
+ }
42
16
 
43
- hikaricp.maximumPoolSize=${fixedConnectionPool}
17
+ db{
44
18
 
19
+ default.driver=com.mysql.jdbc.Driver
20
+
45
- }
21
+ default.username=root
22
+
23
+ default.password="nfgwe4706"
24
+
25
+ default.url="jdbc:mysql://localhost:3306/sample_db?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"
26
+
27
+
46
28
 
47
29
  }
48
30
 
49
31
  ```
50
32
 
33
+ hikaricpの設定は一旦おいといて上のようにしてみてください。
34
+
35
+ 特に、db.default.jdbcUrlという項目で読み込まれることはありません。
36
+
51
- てはどうしょうか
37
+ db.default.urlが正

1

confの設定が間違えていたので修正しました

2019/01/22 08:17

投稿

tino1231
tino1231

スコア374

test CHANGED
@@ -38,12 +38,6 @@
38
38
 
39
39
  hikaricp.driverClassName=com.mysql.cp.jdbc.Driver
40
40
 
41
- hikaricp.username=root
42
-
43
- hikaricp.password="nfgwe4706"
44
-
45
- hikaricp.jdbcUrl="jdbc:mysql://localhost:3306/sample_db"
46
-
47
41
  hikaricp.minimumIdle=${fixedConnectionPool}
48
42
 
49
43
  hikaricp.maximumPoolSize=${fixedConnectionPool}