acdr/cwzoonest/cwzoonest-api/target/classes/config/db.setting
2024-09-05 17:58:29 +08:00

35 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 基本配置信息·
## 测试数据库
url = jdbc:mysql://localhost:3306/acdr?useSSL=FALSE&serverTimezone=Asia/Shanghai&useOldAliasMetadataBehavior=true&rewriteBatchedStatements=true
username = root
password = root
## 线上数据库
### 可选配置
## 是否在日志中显示执行的SQL
showSql = false
## 是否格式化显示的SQL
formatSql = false
## 是否显示SQL参数
showParams = false
## 打印SQL的日志等级默认debug
sqlLevel = debug
### 连接池配置项
## 自动提交
autoCommit = true
## 等待连接池分配连接的最大时长毫秒超过这个时长还没可用的连接则发生SQLException 缺省:30秒
connectionTimeout = 30000
## 一个连接idle状态的最大时长毫秒超时则被释放retired缺省:10分钟
idleTimeout = 30000
## 一个连接的生命时长毫秒超时而且没被使用则被释放retired缺省:30分钟建议设置比数据库超时时长少30秒参考MySQL wait_timeout参数show variables like '%timeout%';
maxLifetime = 60000
## 获取连接前的测试SQL
connectionTestQuery = SELECT 1
## 最小闲置连接数
minimumIdle = 2
## 连接池中允许的最大连接数。缺省值10推荐的公式((core_count * 2) + effective_spindle_count)
maximumPoolSize = 10
## 连接只读数据库时配置为true 保证安全
readOnly = false