Spring Boot Actuator是Spring Boot的子项目。它为您的应用程序添加了多种生产级服务,而您只需付出很少的努力。
打开“/执行器/映射”时获取“Whitelabel错误页面”
我是Spring-cloud的新手,所以我正在使用视频教程,所以要读取暴露的端点,我试图打开http:// localhost:8000 / actuator / mappings,但它对我来说不起作用,但是/ health网址给了我......
spring-cloud-starter-config POST / env无效
我有一个小的spring boot web应用程序(可执行jar),它在application.properties文件中有一些自定义属性。我的目标是能够动态改变这些属性......
我已经按照这个官方教程使用spring boot 2.0.0.RELEASE和spring cloud Finchley.M8进行集中配置。但是动态刷新属性(不重启)是......
我正在开发一个应用程序并使用spring-boot-application作为我的健康端点,我的应用程序正在与我需要在我的健康检查中包含的几个第三方服务进行交互,...
Spring Boot 2中的RepositoryRestResource注释无法访问
我似乎无法让@RepositoryRestResource处理我的简单课程。这是我的代码在GitHub上的地方:https://github.com/txt8888/SB2-RepositoryRestResource基本上,一个部门......
我正在为Spring-Config-Server和Spring-Config-Client创建一个演示项目。在SpringBoot 1.5.6.RELEASE中一切正常。但是,当我将项目升级到2.0.1.RELEASE时,它确实......
尝试使用具有执行器依赖性的简单弹簧启动应用程序,但无法访问http:// localhost:8080 / actuator / beans我能够访问http:// localhost:8080 /执行器与...
我正在构建一个使用Spring Cloud配置服务器作为保存属性文件的集中位置的应用程序。我有多个客户端应用程序从配置中获取配置数据...
Spring Boot Cache + Apache点火+ Spring Boot Actuator - 运行测试时应用程序无法启动
我有一个项目,我使用Spring Boot 2.0.0 +,Spring Boot Cache,Apache Ignite,Spring Boot Actuator和TestNG。自从我从点燃2.5升级到点燃2.6+以来,我一直面临着问题......
有没有办法在Spring Boot 2 Actuator中禁用ReactiveHealthIndicators?
使用Spring Boot 2.1.2执行器。我的类路径中有Redis。执行器自动启用RedisReactiveHealthIndicator。我不希望这样。我的应用程序不是被动的。我想要RedisHealthIndicator,......
使用WebSecurityConfigurerAdapter的@ManagementContextConfiguration不起作用
我有一个有效的Spring Boot 1.x应用程序,配置了不同的管理端口和安全性(Basic Auth)。迁移到Spring 2.1后,它不再起作用了。看代码:@ ...
我正在设置一个Spring云服务器,尝试从git repo获取一些属性,如下所示:spring.cloud.config.server.git.uri = file:/// $ {user.home} / PersoWorkspace / cloud-config在我的春天......
我是堆分析的新手。我们一直在我们的Web应用程序中使用spring boot。最近堆使用率已经变得太高了。要使用Mat和JProfiler等工具分析堆转储,我正在下载它...
使用cxf-spring-boot-starter-jaxrs在spring启动应用程序中的度量标准http_server_requests_seconds_count包含uri为“UNKNOWN”
在Spring Boot应用程序中使用版本2.0.8进行度量标准http_server_requests_seconds_count。使用弹簧执行器公开包含uri为“UNKNOWN”。 Spring Boot应用程序正在使用cxf-spring -...
我正在使用Spring Boot + Spring Task Scheduler创建一个轮询应用程序。我计划在维护窗口期间使用执行器关闭应用程序(请参阅执行器的关闭终点:......
我想在spring boot中刷新属性文件。版本 - 2.1.4.RELEASE如果是春天配置服务器必须将我的所有应用程序连接到我不想要的配置服务器,因为我们的应用程序在...
Spring Boot Actuator Endpoints安全性不适用于自定义Spring Security配置
这是我的Spring Boot 1.5.1 Actuator application.properties:#Spring Boot Actuator management.contextPath:/ actuator management.security.roles = R_0这是我的WebSecurityConfig:@Configuration @ ...
隐藏Spring Boot Actuator中健康指示器的详细信息
我正在使用执行器的Spring Boot健康指示器。到目前为止,示例响应如下:{“status”:“DOWN”,“details”:{“diskSpace”:{“status”:“UP”,“details”:{...
Spring启动禁用Custom HealthIndicator
我已经创建了一个自定义的HealthIndicator,我想在生产中禁用它,直到我们完全上线。我知道有一个属性可以禁用默认的健康指标(management.health.defaults ....
我想知道是否存在一些方法来禁止SpringBoot Actuator监视特定数据源。场景:一个微服务使用3个数据源,但对于某些业务原因,一个......