application.yml 982 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. app:
  2. name: axv1-lh
  3. # redis
  4. redis:
  5. # 地址
  6. host: 74.10.28.1
  7. # 端口,默认为6379
  8. port: 6379
  9. # 数据库索引
  10. database: 0
  11. # 密码
  12. password: Bingo@2021
  13. # 连接超时时间
  14. timeout: 10s
  15. lettuce:
  16. pool:
  17. # 连接池中的最小空闲连接
  18. min-idle: 0
  19. # 连接池中的最大空闲连接
  20. max-idle: 8
  21. # 连接池的最大数据库连接数
  22. max-active: 8
  23. # #连接池最大阻塞等待时间(使用负值表示没有限制)
  24. max-wait: -1ms
  25. spring:
  26. profiles:
  27. active: xxw
  28. server:
  29. port: 8070
  30. mybatis:
  31. mapper-locations: classpath*:taiji/hn/axv1/monitor/mapper/master/*.xml,classpath*:taiji/hn/axv1/monitor/mapper/slave/*.xml
  32. logging:
  33. # 生产环境日志通过basePath、config指定
  34. basePath: /home/monitor/logs
  35. config: classpath:log-config/logback-spring.xml
  36. # 本地开发环境通过level控制
  37. level:
  38. root: info
  39. cn.com.taiji: info