回答編集履歴
1
application.confの書き方について修正
test
CHANGED
@@ -1,29 +1,45 @@
|
|
1
|
+
hikaricpの設定などごちゃ混ぜになっていると思われるので
|
2
|
+
|
3
|
+
一旦、標準的な書き方にして試してみてください。
|
4
|
+
|
1
|
-
```conf
|
5
|
+
```application.conf
|
6
|
+
|
7
|
+
play.db{
|
8
|
+
|
9
|
+
#config = "db"
|
10
|
+
|
11
|
+
#default = "default"
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
# Play uses HikariCP as the default connection pool. You can override
|
16
|
+
|
17
|
+
# settings by changing the prototype:
|
18
|
+
|
19
|
+
prototype {
|
20
|
+
|
21
|
+
# Sets a fixed JDBC connection pool size of 50
|
22
|
+
|
23
|
+
#hikaricp.minimumIdle = 50
|
24
|
+
|
25
|
+
#hikaricp.maximumPoolSize = 50
|
26
|
+
|
27
|
+
}
|
28
|
+
|
29
|
+
}
|
2
30
|
|
3
31
|
db{
|
4
32
|
|
33
|
+
default.driver=com.mysql.jdbc.Driver
|
34
|
+
|
5
|
-
default.
|
35
|
+
default.url="jdbc:mysql://localhost/sample_db"
|
36
|
+
|
37
|
+
default.username=root
|
38
|
+
|
39
|
+
default.password="nfgwe4706"
|
6
40
|
|
7
41
|
}
|
8
42
|
|
9
|
-
```
|
10
|
-
|
11
|
-
と書かれていますが、
|
12
|
-
|
13
|
-
[Playのリファレンス](https://www.playframework.com/documentation/2.5.10/JavaDatabase)では、
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
```conf
|
18
|
-
|
19
|
-
db{
|
20
|
-
|
21
|
-
|
43
|
+
ebean.default=["models.*"]
|
22
|
-
|
23
|
-
}
|
24
44
|
|
25
45
|
```
|
26
|
-
|
27
|
-
と書かれています。
|
28
|
-
|
29
|
-
指定が間違っているとDB接続はできません。
|