ApplicationAvailabilityBean Class — spring-boot Architecture
Architecture documentation for the ApplicationAvailabilityBean class in ApplicationAvailabilityBean.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/availability/ApplicationAvailabilityBean.java lines 39–106
public class ApplicationAvailabilityBean
implements ApplicationAvailability, ApplicationListener<AvailabilityChangeEvent<?>> {
private final Map<Class<? extends AvailabilityState>, AvailabilityChangeEvent<?>> events = new ConcurrentHashMap<>();
private final Log logger;
public ApplicationAvailabilityBean() {
this(LogFactory.getLog(ApplicationAvailabilityBean.class));
}
ApplicationAvailabilityBean(Log logger) {
this.logger = logger;
}
@Override
public <S extends AvailabilityState> S getState(Class<S> stateType, S defaultState) {
Assert.notNull(stateType, "'stateType' must not be null");
Assert.notNull(defaultState, "'defaultState' must not be null");
S state = getState(stateType);
return (state != null) ? state : defaultState;
}
@Override
public <S extends AvailabilityState> @Nullable S getState(Class<S> stateType) {
AvailabilityChangeEvent<S> event = getLastChangeEvent(stateType);
return (event != null) ? event.getState() : null;
}
@Override
@SuppressWarnings("unchecked")
public <S extends AvailabilityState> @Nullable AvailabilityChangeEvent<S> getLastChangeEvent(Class<S> stateType) {
return (AvailabilityChangeEvent<S>) this.events.get(stateType);
}
@Override
public void onApplicationEvent(AvailabilityChangeEvent<?> event) {
Class<? extends AvailabilityState> type = getStateType(event.getState());
if (this.logger.isDebugEnabled()) {
this.logger.debug(getLogMessage(type, event));
}
this.events.put(type, event);
}
private <S extends AvailabilityState> Object getLogMessage(Class<S> type, AvailabilityChangeEvent<?> event) {
AvailabilityChangeEvent<S> lastChangeEvent = getLastChangeEvent(type);
StringBuilder message = new StringBuilder(
"Application availability state " + type.getSimpleName() + " changed");
message.append((lastChangeEvent != null) ? " from " + lastChangeEvent.getState() : "");
message.append(" to " + event.getState());
message.append(getSourceDescription(event.getSource()));
return message;
}
private String getSourceDescription(@Nullable Object source) {
if (source == null || source instanceof ApplicationEventPublisher) {
return "";
}
return ": " + ((source instanceof Throwable) ? source : source.getClass().getName());
}
@SuppressWarnings("unchecked")
private Class<? extends AvailabilityState> getStateType(AvailabilityState state) {
Class<?> type = (state instanceof Enum<?> enumState) ? enumState.getDeclaringClass() : state.getClass();
return (Class<? extends AvailabilityState>) type;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free