diff --git a/core/runtime/src/main/java/io/quarkus/runtime/Startup.java b/core/runtime/src/main/java/io/quarkus/runtime/Startup.java index e57a74b26bf8c..43750635fffa9 100644 --- a/core/runtime/src/main/java/io/quarkus/runtime/Startup.java +++ b/core/runtime/src/main/java/io/quarkus/runtime/Startup.java @@ -12,11 +12,20 @@ import javax.enterprise.inject.spi.ObserverMethod; /** - * This annotation can be used to initialize a CDI bean at application startup. The behavior is similar to a declaration of an - * observer of the {@link StartupEvent} - a contextual instance is created and lifecycle callbacks (such as - * {@link javax.annotation.PostConstruct}) are invoked. In fact, a synthetic observer of the {@link StartupEvent} is generated - * for each bean annotated with this annotation. Furthermore, {@link #value()} can be used to specify the priority of the - * generated observer method and thus affect observers ordering. + * This annotation can be used to initialize a CDI bean at application startup: + *