You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
748 B

  1. server:
  2. port: 10030
  3. spring:
  4. datasource:
  5. hikari: # HikariCP连接池配置
  6. maximum-pool-size: 10 # 最大连接数
  7. minimum-idle: 5 # 最小空闲连接数
  8. idle-timeout: 30000 # 空闲连接超时时间(毫秒)
  9. max-lifetime: 1800000 # 连接最大存活时间(毫秒)
  10. connection-timeout: 30000 # 连接超时时间(毫秒)
  11. pool-name: HwgoldHikariCP # 连接池名称
  12. driver-class-name: com.mysql.cj.jdbc.Driver
  13. url: jdbc:mysql://39.101.133.168/hwgold?serverTimezone=GMT%2b8
  14. username: hwgold
  15. password: 'AGX4Z3YMxiCG3GR2'
  16. application:
  17. name: recharge
  18. mybatis:
  19. configuration:
  20. map-underscore-to-camel-case: true
  21. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl