ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` #数据源配置 spring: datasource: dynamic: #设置主数据源-备注:主数据源只能有一个 primary: master datasource: #主数据源信息 master: #数据源URL url: jdbc:mysql://192.168.0.69:****/zzth_yun?autoReconnect=true&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=Asia/Shanghai&useSSL=false&rewriteBatchedStatements=true&allowMultiQueries=true username: ***** password: ********* driver-class-name: com.mysql.cj.jdbc.Driver #连接池类型 type: com.zaxxer.hikari.HikariDataSource #连接池配置 hikari: #连接池名称,默认HikariPool-1 pool-name: DateSourceHikariCP #空闲连接存活最大时间,默认10分钟 idle-timeout: 60000 #最大连接数 maximum-pool-size: 50 #最小连接数 minimum-idle: 20 #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认30分钟 max-lifetime: 1800000 #配置获取连接等待超时的时间 connection-timeout: 30000 #校验超时时间 validation-timeout: 5000 #多久检查一次连接的活性 keepalive-time: 30000 #自动提交行为,默认值:true auto-commit: true #连接测试查询 connection-test-query: SELECT 1 #每次创建新连接后执行,然后再将其添加到池中 connection-init-sql: SELECT 1