Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Register a custom StartupEventBroadcaster for integrating a broadcaster which gets invoked before the StartupEvent was fired.
Attention: There is no guarantee that CDI has been bootstrapped.
However, a StartupEventBroadcaster allows to do it (see the controlled bootstrapping add-on).

Note
titleHint

The usage of @InvocationOrder is supported.

Config

Framework Config

The core of CODI provides base implementations which are used to provide a testable, pluggable and type-safe config. If it is possible this CDI based config approach is used to configure the framework (esp. the SPI). This approach decouples the logical config entries from the config-source. That means it's possible to switch e.g. between Java Config (values are directly encoded in config classes), property files, db table/s, xml (e.g. web.xml) and every other format which can be used for a config.

...