12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- spring:
- datasource:
- url: jdbc:mysql://172.16.90.253:3306/cq-carbon-platform-dev?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
- username: root
- password: 123456
- druid:
- initial-size: 5
- min-idle: 10
- max-active: 20
- web-stat-filter:
- exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*"
- stat-view-servlet:
- login-username: druid
- login-password: druid
- redis:
- host: 172.16.90.253
- database: 0
- port: 6379
- password: 123456
- timeout: 300ms
- zipkin:
- base-url: http://localhost:9411
- locator:
- discovery:
- enabled: true
- sleuth:
- sampler:
- probability: 1.0
- boot:
- admin:
- client:
- url: http://localhost:8095
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- endpoint:
- health:
- show-details: always
- mybatis:
- # 搜索指定包别名
- typeAliasesPackage: com.hcloud.microserver
- mapper-locations:
- - classpath:carbon/*.xml
- - classpath:system/*.xml
- - classpath*:com/**/mapper/*.xml
- logging:
- level:
- root: info
- com.hcloud: debug
- sleuth:
- sampler:
- probability: 1.0
- boot:
- admin:
- client:
- url: http://localhost:9091
|