管理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?
好的,它是有效的:必须用空的身体发帖http://localhost:8080/env/?test=dasda回应是:
{
"test": "dasda"
}
我在文件中发现了以下内容
对于Spring Boot Actuator应用程序,还有一些额外的管理endpoint:
>
/refresh用于重新加载引导带上下文和刷新@ReredScope bean
/重新启动以关闭ApplicationContext并重新启动它(默认情况下已禁用)
/暂停和/或继续调用生命周期方法(ApplicationContext上的stop()和start())
看起来你必须发布 /env而不是 /end/$your Property
我已经开发了异步Spring云流服务,我正在尝试开发一个边缘服务,它使用@MessagingGateway提供对本质上异步的服务的同步访问。 我当前正在获取以下堆栈跟踪: 我的@MessagingGateway: 如果我通过@StreamListener在回复频道上使用消息,那么它的效果很好: 在生产者方面,我正在配置以确保多个消费者可以处理消息,相应地,消费者具有匹配的配置。 消费者: 生产商:
如何使用Spring Cloud sleuth跟踪基于Kafka的事件?我看到的例子都是RESTAPI。我在找Kafka客户图书馆。 另外,使用Spring cloud sleuth是一个好主意还是应该手动通过标头传递我的TraceID?
Spring Cloud Netflix提供有用的工具,无论使用哪种DiscoveryClient实现。Feign,Turbine,Ribbon和Zuul均与Spring Cloud Zookeeper合作。 Ribbon与Zookeeper Spring Cloud Zookeeper提供Ribbon的ServerList的实现。当使用spring-cloud-starter-zookeeper
使用的平台:库伯内特斯。 我对Spring cloud stream url有问题。我正在使用spring cloud stream启动我的spring cloud任务。流部署在kubernetes平台中。流包含http kafka作为源,TaskLaunceKafka作为接收器。我使用http kafka kubernetes服务url来启动任务。Kubernetes服务url在每次部署后都会发
如何禁用功能区,以便使用默认的假客户端。