2018-09-15 14:16:17 +01:00
|
|
|
database:
|
2018-09-15 20:57:51 +01:00
|
|
|
# the name of your JDBC driver
|
2018-09-19 14:18:34 +01:00
|
|
|
driverClass: org.h2.Driver
|
2018-09-15 20:57:51 +01:00
|
|
|
|
|
|
|
# the JDBC URL
|
2018-09-24 21:46:59 +01:00
|
|
|
url: jdbc:h2:file:./sampledatabase.db
|
2018-09-15 20:57:51 +01:00
|
|
|
|
|
|
|
# any properties specific to your JDBC driver:
|
|
|
|
properties:
|
|
|
|
foreign_keys: true
|
2018-09-25 13:37:24 +01:00
|
|
|
hibernate.hbm2ddl.auto: update
|
2018-09-15 14:16:17 +01:00
|
|
|
|
|
|
|
server:
|
2018-09-21 12:51:13 +01:00
|
|
|
rootPath: /api/
|
2018-09-23 21:22:48 +01:00
|
|
|
requestLog:
|
|
|
|
appenders:
|
2018-09-25 13:37:24 +01:00
|
|
|
- type: console
|
|
|
|
queueSize: 2048
|
2018-09-21 12:51:13 +01:00
|
|
|
|
2018-09-24 21:46:59 +01:00
|
|
|
adminPassword: "testPassword"
|