我正在尝试做我自己的 Spring 启动基于 spring-boot-starter-web
以及 spring-boot-starter-actuator
. 这是为了更容易地与我们公司使用的平台集成。在我的起动器,我需要一些执行机构的自定义配置,这通常是在 application.yml
文件,它看起来像这样:
management:
endpoints:
web:
exposure.include:
- 'prometheus'
- 'health'
base-path: '/_meta'
path-mapping:
health: healthcheck
prometheus: metrics
metrics:
web:
server.request.autotime.percentiles: 0.50,0.75,0.90,0.99
client.request.autotime.percentiles: 0.50,0.75,0.90,0.99
但如果我把配置文件放在启动程序中,它就会被实际应用程序中的config覆盖。所以,问题是如何为启动器中的执行器(或任何其他Spring属性)提供自定义配置?
暂无答案!
目前还没有任何答案,快来回答吧!