Spring Boot 执行器

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

我正在使用 Spring Boot 和 Spring Boot Actuator 3.x.x。现在,当健康贡献者不存在时,将在运行时抛出错误。有没有办法阻止此类错误被抛出?

之前,在 Spring Boot 和 Spring Boot Actuator 2.x.x 上,无论应用程序是否包含运行状况贡献者,都不会引发错误。

提前谢谢您。 希望您度过愉快的一天!

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

也许在您所在的版本上,您需要将其添加为依赖项才能激活它?试一试:

   <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
   </dependency>
© www.soinside.com 2019 - 2024. All rights reserved.