类 Status
- java.lang.Object
- org.springframework.boot.actuate.health.Status
public final class Status extends Object
Value object to express state of a component or subsystem.Status provides convenient constants for commonly used states like
UP,DOWNorOUT_OF_SERVICE.Custom states can also be created and used throughout the Spring Boot Health subsystem.
- 从以下版本开始:
- 1.1.0
字段概要
字段 修饰符和类型 字段 说明 static StatusDOWNStatusindicating that the component or subsystem has suffered an unexpected failure.static StatusOUT_OF_SERVICEStatusindicating that the component or subsystem has been taken out of service and should not be used.static StatusUNKNOWNStatusindicating that the component or subsystem is in an unknown state.static StatusUPStatusindicating that the component or subsystem is functioning as expected.
字段详细资料
UNKNOWN
public static final Status UNKNOWN
Statusindicating that the component or subsystem is in an unknown state.
UP
public static final Status UP
Statusindicating that the component or subsystem is functioning as expected.
DOWN
public static final Status DOWN
Statusindicating that the component or subsystem has suffered an unexpected failure.
OUT_OF_SERVICE
public static final Status OUT_OF_SERVICE
Statusindicating that the component or subsystem has been taken out of service and should not be used.
方法详细资料
getDescription
public String getDescription()
Return the description of this status.- 返回:
- the description