
com.foryouandyourcustomers.health.EnableHealthCheck 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 java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.boot.autoconfigure.AutoConfigurationPackage;
import org.springframework.context.annotation.Import;
@SuppressWarnings("deprecation")
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@AutoConfigurationPackage
@Import(HealthCheckConfiguration.class)
public @interface EnableHealthCheck {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy