-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello-world.yml
More file actions
33 lines (30 loc) · 972 Bytes
/
hello-world.yml
File metadata and controls
33 lines (30 loc) · 972 Bytes
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
template: Hello, %s!
defaultName: Stranger
logging:
# The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
level: INFO
loggers:
com.hs2solutions.dropkick: DEBUG
org.hibernate.SQL: ALL
appenders:
- type: console
database:
driverClass: org.h2.Driver
user: sa
password: sa
url: jdbc:h2:../dropkick-database
properties:
charSet: UTF-8
hibernate.dialect: org.hibernate.dialect.H2Dialect
# the maximum amount of time to wait on an empty pool before throwing an exception
maxWaitForConnection: 1s
# the SQL query to run when validating a connection's liveness
validationQuery: "/* HelloWorld Health Check */ SELECT 1"
# initial number of connections to open
initialSize: 1
# the minimum number of connections to keep open
minSize: 1
# the maximum number of connections to keep open
maxSize: 5
# whether or not idle connections should be validated
checkConnectionWhileIdle: false