123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- server:
- type: simple
- applicationContextPath: /
- connector:
- type: http
- port: 9090
- useServerHeader: true
- # There is no proxy in front of the server
- useForwardedHeaders: false
- # Test requirements forbid gzip compression of the replies
- gzip:
- enabled: false
- requestLog:
- appenders: []
- logging:
- level: WARN
- appenders:
- - type: console
- database:
- # the name of your JDBC driver
- driverClass: org.postgresql.Driver
- # the username
- user: benchmarkdbuser
- # the password
- password: benchmarkdbpass
- # the JDBC URL
- url: jdbc:postgresql://tfb-database:5432/hello_world
- # 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: 1s
- # the initial number of connections
- initialSize: 8
- # the minimum number of connections to keep open
- minSize: 8
- # the maximum number of connections to keep open
- maxSize: 256
- # whether or not idle connections should be validated
- checkConnectionWhileIdle: false
- # disable comments in SQL queries
- autoCommentsEnabled: false
- # disable autocommit in the JDBC driver
- autoCommitByDefault: false
|