如何在春季启动时指定自定义运行状况检查注册表(application.yml)

时间:2018-08-31 10:50:05

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

是否可以使用application.yml中的属性com.codahale.metrics.health.HealthCheckRegistry在Spring Boot应用程序中注入自定义spring.datasource.hikari.health-check-registry?以及如何做到?

spring:
  datasource:
    driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
    url: jdbc:sqlserver://localhost:1433;databaseName=mydb;failoverPatner=
    username: db_user
    password: db_pass
    hikari:
      data-source-properties:
        cachePrepStmts: true
        prepStmtCacheSize: 250
      health-check-registry: ???????
    jmx-enabled: true

1 个答案:

答案 0 :(得分:0)

我建议选择一种替代方法,因为有关此方面的信息很少。

我搜索了Google和StackOverflow,发现没有任何用处。

希望这对您有用。