feat: postgrep配置信息

V0.5.x
jay 2023-08-07 16:14:54 +08:00
parent 4561f0b6f3
commit 43df7c4ff5
1 changed files with 49 additions and 17 deletions

View File

@ -69,23 +69,55 @@ spring:
#=======内置H2数据库连接设置结束==========>>
# <<==========mysql配置开始==============
# <<==========mysql配置开始==============
# datasource:
# url: jdbc:mysql://127.0.0.1:3306/iotkit?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&useSSL=false
# driverClassName: com.mysql.cj.jdbc.Driver
# username: root
# password: 123456
# validationQuery: SELECT 1
# testOnBorrow: true
# jpa:
# database: MySQL
# database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
## show-sql: true
# hibernate:
# ddl-auto: update
# properties:
# hibernate:
# format_sql: true
datasource:
url: jdbc:postgresql://127.0.0.1:5432/iotkit
driverClassName: org.postgresql.Driver
username: postgres
password: 123456
validationQuery: SELECT 1
testOnBorrow: true
type: com.zaxxer.hikari.HikariDataSource
# 动态数据源文档 https://www.kancloud.cn/tracy5546/dynamic-datasource/content
dynamic:
hikari:
connection-timeout: 5000
idle-timeout: 30000 # 经过idle-timeout时间如果连接还处于空闲状态, 该连接会被回收
min-idle: 5 # 池中维护的最小空闲连接数, 默认为 10 个
max-pool-size: 16 # 池中最大连接数, 包括闲置和使用中的连接, 默认为 10 个
max-lifetime: 60000 # 如果一个连接超过了时长,且没有被使用, 连接会被回收
is-auto-commit: true
primary: master #设置默认的数据源或者数据源组,默认值即为master
strict: true #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
datasource:
# 主库数据源
master:
type: ${spring.datasource.type}
driverClassName: org.postgresql.Driver
# jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
# rewriteBatchedStatements=true 批处理优化 大幅提升批量插入更新删除性能(对数据库有性能损耗 使用批量操作应考虑性能问题)
url: jdbc:postgresql://127.0.0.1:5432/iotkit
username: postgres
password: 123456
# 从库数据源
slave:
lazy: true
type: ${spring.datasource.type}
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://127.0.0.1:5432/iotkit
username: postgres
password: 123456
jpa:
database: MySQL
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
# show-sql: true
hibernate:
ddl-auto: update
properties:
hibernate:
format_sql: true
# ============mysql配置结束============>>
#<<================es时序数据配置开始===============
@ -111,7 +143,7 @@ spring:
redis:
#使用内置redis的配置
#host: redis
host: 127.0.0.1
host: 192.168.6.129
port: 6379
database: 0