| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- spring:
- aop:
- proxy-target-class: true
- 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
- freemarker:
- check-template-location: false
- datasource:
- dynamic:
- p6spy: true
- 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
- zipkin:
- sender:
- type: rabbit
- sleuth:
- sampler:
- probability: 1
- rabbitmq:
- host: ${rabbitmq.url}
- port: 5672
- username: febs
- password: 123456
- autoconfigure:
- exclude: org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
- 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
- security:
- oauth2:
- resource:
- id: ${spring.application.name}
- user-info-uri: http://${febs-gateway}:8301/auth/user
- info:
- app:
- name: ${spring.application.name}
- description: "@project.description@"
- version: "@project.version@"
- management:
- endpoints:
- web:
- exposure:
- include: '*'
- endpoint:
- health:
- show-details: ALWAYS
|