forked from eliast/dropwizard-guice-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhello-world.yml
More file actions
52 lines (36 loc) · 1.27 KB
/
Copy pathhello-world.yml
File metadata and controls
52 lines (36 loc) · 1.27 KB
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
43
44
45
46
47
48
49
50
51
52
defaultName: Stranger
template: Hello, %s!
server:
type: default
rootPath: '/api/*'
applicationContextPath: /
database:
# the name of your JDBC driver
driverClass: org.apache.derby.jdbc.EmbeddedDriver
# the username
user: test
# the password
password: test
# the JDBC URL
url: jdbc:derby:local-database;create=true
# any properties specific to your JDBC driver:
properties:
charSet: UTF-8
# the maximum amount of time to wait on an empty pool before throwing an exception
maxWaitForConnection: 20s
# the SQL query to run when validating a connection's liveness
validationQuery: "/* MyService Health Check */ values 1"
# the timeout before a connection validation queries fail
#validationQueryTimeout: 3s
# the minimum number of connections to keep open
minSize: 2
initialSize: 2
# the maximum number of connections to keep open
maxSize: 5
# whether or not idle connections should be validated
checkConnectionWhileIdle: false
# the amount of time to sleep between runs of the idle connection validation, abandoned cleaner and idle pool resizing
evictionInterval: 10s
# the minimum amount of time an connection must sit idle in the pool before it is eligible for eviction
minIdleTime: 1 minute
logValidationErrors: true