设置server.servlet.context-path时将management.endpoints.web.base-path设置为根目录

问题描述 投票:0回答:1

我正在尝试将执行器的基本路径设置为/,以便PCF可以访问它。

我正在使用SpringBoot 2.1.4

所有应用程序都已配置了上下文根。设置management.endpoints.web.base-path仅更改相对于应用程序上下文根的路径。

当存在应用程序上下文根目录时,是否可以将管理路径设置为根目录?还是有某种方法可以破解SB2,以便将路径的所有请求路由到我的所有RequestMappings?

spring-boot cloudfoundry spring-boot-actuator actuator
1个回答
1
投票

如果使用“以便PCF可以访问它,则表示您是Pivotal Apps Manager,并且您的应用使用了上下文路径,那么您需要在此处应用替代方法。

https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#_custom_context_path

这将允许您在应用程序中使用上下文路径,但仍会公开执行器端点,以便Pivotal Apps Manager可以使用它们。

希望有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.