- java.lang.Object
-
- jakarta.enterprise.event.Startup
-
public class Startup extends java.lang.Object
A CDI event with payload of type
Startup
and qualifierAny
is synchronously fired by CDI container during application initialization. Applications must never manually fire any events withStartup
as payload.Implementations have to fire this event after the event with qualifier
@Initialized(ApplicationScope.class)
but before processing requests.This event can be observed by integrators and libraries to perform any kind of early initialization as well as by users as a reliable entry point for when the CDI container is ready.
Observers are encouraged to specify
See also@Priority
to determine ordering with lower priority numbers being recommended for platform/framework/library integration and higher numbers for user applications.Interceptor.Priority
-
-
Constructor Summary
Constructors Constructor Description Startup()
-