TabooLib/src/main/resources/__resources__/datasource.yml

32 lines
1.1 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 默认连接池配置
DefaultSettings:
DriverClassName: 'com.mysql.jdbc.Driver'
# 自动提交从池中返回的连接
AutoCommit: true
# 池中维护的最小空闲连接数
MinimumIdle: 1
# 池中最大连接数,包括闲置和使用中的连接
MaximumPoolSize: 10
# 用来指定验证连接有效性的超时时间
ValidationTimeout: 5000
# 等待来自池的连接的最大毫秒数
ConnectionTimeout: 30000
# 一个连接idle状态的最大时长超时则被释放
IdleTimeout: 600000
# 一个连接的生命时长,超时而且没被使用则被释放
MaxLifetime: 1800000
# 如果您的驱动程序支持JDBC4我们强烈建议您不要设置此属性
ConnectionTestQuery: SELECT 1
# 其他自定义配置
DataSourceProperty: {}
# cachePrepStmts: true
# prepStmtCacheSize: 250
# prepStmtCacheSqlLimit: 2048
# useServerPrepStmts: true
# useLocalSessionState: true
# useLocalTransactionState: true
# rewriteBatchedStatements: true
# cacheResultSetMetadata: true
# cacheServerConfiguration: true
# elideSetAutoCommits: true
# maintainTimeStats: false