处理连接池启动异常自动关闭句柄

spring:
  jackson: 
    time-zone: GMT+8
    date-format: yyyy-MM-dd'T'HH:mm:ss.SSSZZ
  datasource: 
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/station?rewriteBatchedStatements=true&characterEncoding=UTF-8&useUnicode=true&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
    username: root
    password: root
    hikari:
      minimum-idle: 5           
      maximum-pool-size: 20
      connection-timeout: 20000
      idle-timeout: 30000
      auto-commit: true
      max-lifetime: 1800000
      leak-detection-threshold: 2000  # 添加一个阈值,单位为毫秒

添加了一个名为leak-detection-threshold的参数,并将其值设置为2000毫秒。这个参数用于检测连接泄漏的阈值,即当一个连接在连接池中超过指定的时间未被使用时,会被判定为连接泄漏,并自动关闭。通过设置适当的阈值,可以帮助解决连接池启动异常导致连接句柄未能正常关闭的问题

你可能感兴趣的:(mysql)