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

无法访问Spring靴执行器“/执行器”endpoint

曹昊焱
2023-03-14
{"timestamp":1455929182552,"status":404,"error":"Not Found","message":"No message available","path":"/actuator"}

如何访问http://localhost:8081/Actuatorendpoint?

共有1个答案

诸葛绍元
2023-03-14

从spring boot版本2.0.1开始,使用以下属性可以工作

management.endpoints.web.exposure.include=<comma separated endpoints you wish to expose>

如果不考虑安全性,可以使用*通配符在web上公开所有执行器endpoint。

此外,endpoint似乎也从以前的版本中移了过来。为了前任。如果您希望使用bean,现在可以使用/actuator/beansendpoint。

 类似资料:
  • 我尝试在Spring启动中使用执行器endpoint。应用程序运行平稳。我的pom文件如下所示: 这是应用程序的内容。属性文件: 这是我的Spring Boot应用程序的开始: 每当我尝试通过键入连接/health、/Info或/metricsendpoint时http://localhost:8080/health,HTTP请求传输到http://localhost:8080/showMyLog

  • 我在应用程序中添加了Spring Boot执行器,但现在我想添加由执行器创建的新服务(/health/metrics..)在我大摇大摆的文件上。 我不知道如何配置执行器和大摇大摆。

  • 我的问题是:如何在使用Log4j2时查看所有记录器的完整列表,而不在Spring-boot应用程序中进行登录? 编辑:这里是我的pom.xml

  • 我的问题是:有什么方法可以防止这种行为(意味着bean错误冲突)?或者至少在发生这种情况时得到警告消息。 提前感谢您的回答

  • 详情: 我要访问的是“执行器”endpoint,而不是spring boot Acture(localhost:8080/acture)提供的其他endpoint 是,我已尝试在属性文件中手动启用该终结点(endpoints.enabled=true或endpoints.actuator.enabled=true) 是,我已尝试启用/禁用endpoint。敏感属性 是的,执行器的其他endpoin