| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- spring:
- datasource:
- dynamic:
- hikari:
- connection-timeout: 30000
- max-lifetime: 1800000
- max-pool-size: 15
- min-idle: 5
- connection-test-query: select 1
- pool-name: FebsHikariCP
- primary: base
- datasource:
- base:
- username: root
- password: 123456
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- boot:
- admin:
- client:
- url: http://${febs-monitor-admin}:8401
- username: febs
- password: 123456
- redis:
- database: 0
- host: ${redis.url}
- port: 6379
- password: 123456
- lettuce:
- pool:
- min-idle: 8
- max-idle: 500
- max-active: 2000
- max-wait: 10000
- timeout: 5000
- mybatis-plus:
- type-aliases-package: cc.mrbird.febs.common.entity.system
- mapper-locations: classpath:mapper/*.xml
- configuration:
- jdbc-type-for-null: null
- global-config:
- banner: false
- info:
- app:
- name: ${spring.application.name}
- description: "@project.description@"
- version: "@project.version@"
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- endpoint:
- health:
- show-details: ALWAYS
|