多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
由于端点可能包含敏感信息,因此应仔细考虑何时公开它们。 下表显示了内置端点的默认曝光: | ID | jmx | web | | --- | --- | --- | | auditevents | Yes | No | | ... | ... | ... | | health | Yes | Yes | 要改变默认的暴露设置,使用特定的include 和 exclude | 属性 | 默认 | | --- | --- | | management.endpoints.jmx.exposure.exclude | | | management.endpoints.jmx.exposure.include | * | | management.endpoints.web.exposure.exclude | | | management.endpoints.web.exposure.include | info, health | 如果jmx只暴露端点` health` 和 `info`其他都不暴露给jmx ~~~ management.endpoints.jmx.exposure.include=health,info ~~~ `*`可以匹配所有端点,如果要把所有端点暴露给http,除了` health` 和 `info` ~~~ management.endpoints.web.exposure.include=* management.endpoints.web.exposure.exclude=env,beans ~~~