feat(config): 更新开发环境数据库连接配置

- 将数据库URL从klp-oa更改为klp-oa-test
- 保持其他数据库连接参数不变
- 确保开发环境使用独立的测试数据库
- 维持批处理优化和其他连接属性配置
This commit is contained in:
2025-11-27 16:14:40 +08:00
parent 6cde23d1bc
commit 527370a573

View File

@@ -64,7 +64,7 @@ spring:
driverClassName: com.mysql.cj.jdbc.Driver
# jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
# rewriteBatchedStatements=true 批处理优化 大幅提升批量插入更新删除性能(对数据库有性能损耗 使用批量操作应考虑性能问题)
url: jdbc:mysql://140.143.206.120:13306/klp-oa?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&nullCatalogMeansCurrent=true
url: jdbc:mysql://140.143.206.120:13306/klp-oa-test?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&autoReconnect=true&rewriteBatchedStatements=true&nullCatalogMeansCurrent=true
username: klp
password: KeLunPu@123
# 从库数据源