当前位置: 首页 > 知识库问答 >
问题:

Spring-Cloud如何使用endpoint

曹自怡
2023-03-14

管理endpoint:

对于Spring Boot Actuator应用程序,还有一些额外的管理endpoint:

    POST to /env to update the Environment and rebind @ConfigurationProperties and log levels

http://localhost:8080/env/testprop它工作并返回:

{
"testprop": "test value"
}

但当我发帖时:http://localhost:8080/env/testprop不支持请求方法“POST”

我想更新testprop,如何使用API?

共有2个答案

皇甫高阳
2023-03-14

好的,它是有效的:必须用空的身体发帖http://localhost:8080/env/?test=dasda回应是:

{
    "test": "dasda"
}
涂承运
2023-03-14

我在文件中发现了以下内容

对于Spring Boot Actuator应用程序,还有一些额外的管理endpoint:

>

/refresh用于重新加载引导带上下文和刷新@ReredScope bean

/重新启动以关闭ApplicationContext并重新启动它(默认情况下已禁用)

/暂停和/或继续调用生命周期方法(ApplicationContext上的stop()和start())

看起来你必须发布 /env而不是 /end/$your Property

 类似资料: