2

我在我的 spring boot 应用程序中使用执行器子项目。我在 中配置了执行器管理功能的地址和端口,application.properties将监控流量与生产流量分开。

management.address=127.0.0.1
management.port=8081

此外,我想使用 java melody,并且我想在与执行器端点相同的连接池上提供 java melody 仪表板。所以最后 java melody 仪表板应该由 提供localhost:8081/monitoring,而不是(!)由提供localhost:8080/monitoring

我怎样才能做到这一点?

4

1 回答 1

0

从 javamelody-spring-boot-starter 1.76 开始,您现在可以将 spring-boot 管理端口(例如 8081)用于监控页面,而不是应用程序的 http 端口(例如 8080)。

请参阅文档: https ://github.com/javamelody/javamelody/wiki/SpringBootStarter#configuration-in-case-of-management-port

于 2019-07-15T16:16:28.033 回答