12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- spring:
- application:
- name: cloud-yysj-product-check
- banner:
- location: classpath:config/banner.txt
- sleuth:
- sampler:
- probability: 0.1
- web:
- additional-skip-pattern: /api/v2/spans
- zipkin:
- base-url: http://127.0.0.1:${server.port}
- output:
- ansi:
- enabled: DETECT
- http:
- encoding:
- force: true
- enabled: true
- charset: UTF-8
- main:
- allow-bean-definition-overriding: true
- cloud:
- kubernetes:
- config:
- sources:
- - name: ${spring.application.name}
- namespace: cloud-yysj
- server:
- port: 8080
- management:
- server:
- port: 8081
- endpoint:
- restart:
- enabled: true
- health:
- show-details: always
- endpoints:
- enabled-by-default: true
- web:
- exposure:
- include: "*"
- info:
- name: 云验平台二级网关
- version: '@project.version@'
|