12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- server:
- type: simple
- applicationContextPath: /
- connector:
- type: http
- port: 9090
- useServerHeader: true
- requestLog:
- appenders: []
- logging:
- appenders: []
- 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://127.0.0.1:5432/hello_world?jdbcCompliantTruncation=false&elideSetAutoCommits=true&useLocalSessionState=true&cachePrepStmts=true&cacheCallableStmts=true&alwaysSendSetIsolation=false&prepStmtCacheSize=4096&cacheServerConfiguration=true&prepStmtCacheSqlLimit=2048&zeroDateTimeBehavior=convertToNull&traceProtocol=false&useUnbufferedInput=false&useReadAheadInput=false&maintainTimeStats=false&useServerPrepStmts&cacheRSMetadata=true
- # any properties specific to your JDBC driver:
- properties:
- charSet: UTF-8
- hibernate.dialect: org.hibernate.dialect.PostgreSQL9Dialect
- # the maximum amount of time to wait on an empty pool before throwing an exception
- maxWaitForConnection: 1s
- # 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
|