12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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:
- appenders: []
- database:
- # the name of your JDBC driver
- driverClass: com.mysql.jdbc.Driver
- # the username
- user: benchmarkdbuser
- # the password
- password: benchmarkdbpass
- # the JDBC URL
- url: jdbc:mysql://TFB-database:3306/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.MySQLDialect
- # 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
|