
com.foryouandyourcustomers.health.HealthCheckConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of health-check Show documentation
Show all versions of health-check Show documentation
The main goal of this module is to enable the creation of health checks as a tool for testing the
application in run time.
The newest version!
package com.foryouandyourcustomers.health;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class HealthCheckConfiguration {
@Bean
public CustomHealthIndicator customHealthIndicator(){
return new CustomHealthIndicator();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy