Spring启动执行器MySQL数据库健康检查

时间:2016-09-22 06:02:41

标签: java mysql spring spring-boot spring-boot-actuator

我使用MySQL数据库设计了一个演示弹簧启动应用程序CRUD操作。我的application.properties文件如下。

spring.boot.admin.url=http://localhost:8081
spring.datasource.url= jdbc:mysql://localhost:3306/springbootdb
spring.datasource.username=root
spring.datasource.password=admin
endpoints.health.sensitive=false
management.health.db.enabled=true
management.health.defaults.enabled=true
management.health.diskspace.enabled=true
spring.jpa.hibernate.ddl-auto=create-drop

弹簧执行器的POM.xml如下。

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-client</artifactId>
    <version>1.3.4</version>
</dependency>

当我尝试点击网址“http://localhost:8080/health”时,我收到{“status”:“UP”}作为回复。我想用弹簧启动执行器监视我的数据库(MySQL)。我想查看我的数据库状态。

有人可以帮忙吗?

6 个答案:

答案 0 :(得分:6)

我会检查the documentation - 匿名公开详细信息需要禁用执行器的安全性。

如果这不是您想要的,您可以完全控制安全性并使用Spring Security编写自己的规则。

答案 1 :(得分:1)

如果您使用弹簧安全性,则默认情况下会为执行器启用安全性。

在您的属性文件中添加它 -

management.security.enabled= false

OR

在属性文件中添加用户名和密码 -

security.user.name= username
security.user.password = password

并使用这些凭据访问执行器端点。

答案 2 :(得分:0)

“ management.endpoint.health.show-details =总是”添加您的application.properties

答案 3 :(得分:0)

呼叫http://localhost:8080/actuator端点时,必须有一个如下所示的端点。

"health-component": {
  "href": "http://localhost:8080/actuator/health/{component}",
  "templated": true
}

就我而言,我在应用程序中使用mongodb。我将其称为http://localhost:8080/actuator/health/mongo端点,它将返回mongodb运行状况。

{
  "status": "UP",
  "details": {
     "version": "2.6.0"
  }
}

答案 4 :(得分:0)

我用自己的方式检查数据库连接。下面的解决方案非常简单,您可以根据需要进行修改。我知道这不是专门针对执行器的,尽管您不想使用执行器时,也可以使用相同的方法来解决。

@RestController
@RequestMapping("/api/db/")
public class DbHealthCheckController {
@Autowired
JdbcTemplate template;

private final Logger LOGGER = LoggerFactory.getLogger(this.getClass());

@GetMapping("/health")
public ResponseEntity<?> dbHealthCheck() {
    LOGGER.info("checking db health");
    try {
        int errorCode = check(); // perform some specific health check
        if (errorCode != 1)
            return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(new ApiResponse(false, "down"));
        return ResponseEntity.ok(new ApiResponse(true, "Up"));
    } catch (Exception ex) {
        ex.printStackTrace();
        LOGGER.error("Error Occured" + ex.getMessage());
        return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(new ApiResponse(false, "Down"));
    }
}

   public int check() {
     List<Object> results = template.query("select 1 from dual", new 
           SingleColumnRowMapper<>());
          return results.size();
     }
}

ApiResponse是具有2个属性Boolean success and String message的简单POJO类。

答案 5 :(得分:0)

在2.2.x春季版本中,是:

management.endpoint.health.show-details=always

默认情况下,此道具永远不会有价值。