fix: 修复mysql动态数据源配置缺失

V0.5.x
zak 2023-08-17 14:49:34 +08:00
parent c51b39b76d
commit b49c65312c
1 changed files with 30 additions and 17 deletions

View File

@ -67,24 +67,37 @@ spring:
web-allow-others: true
#=======内置H2数据库连接设置结束==========>>
# <<==========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
# jpa:
# database: MySQL
# database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
# show-sql: true
# hibernate:
# ddl-auto: update
# properties:
# hibernate:
# format_sql: true
# datasource:
# type: com.zaxxer.hikari.HikariDataSource
# 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: com.mysql.cj.jdbc.Driver
# # jdbc 所有参数配置参考 https://lionli.blog.csdn.net/article/details/122018562
# url: jdbc:mysql://192.168.31.136:3306/iotkit?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&useSSL=false
# username: root
# password: 123456
# ============mysql配置结束============>>
#<<================es时序数据配置开始===============