aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/config.json
blob: 436a181ad09b8d689a3befd911554fd564718501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "database": {
    "driverClass": "org.postgresql.Driver",
    "user": "postgres",
    "password": "test123",
    "url": "jdbc:postgresql://127.0.0.1:5432/dcae_inv",
    "properties": {
      "charSet": "UTF-8"
    },
    "maxWaitForConnection": "1s",
    "validationQuery": "/* MyService Health Check */ SELECT 1",
    "minSize": 2,
    "maxSize": 8,
    "initialSize": 2,
    "checkConnectionWhileIdle": false,
    "evictionInterval": "10s",
    "minIdleTime": "1 minute"
  },
  "dcaeControllerConnection": {
    "host": "dcae-controller-hostname",
    "port": 9998,
    "basePath": "resources",
    "user": null,
    "password": null,
    "required": false
  },
  "databusControllerConnection": {
    "host": "databus-controller-hostname",
    "port": 8443,
    "mechId": null,
    "password": null,
    "required": false
  },
  "httpClient": {
    "minThreads": 1,
    "maxThreads": 128,
    "gzipEnabled": false,
    "gzipEnabledForRequests": false,
    "timeout": "5000milliseconds",
    "connectionTimeout": "5000milliseconds"
  }
}