Documentation

Documentation versions (currently viewingVaadin 24)

Observable Vaadin Events

List of published events to CDI.

The Vaadin CDI add-on publishes many Vaadin events to contexts and dependency injection (CDI).

It isn’t necessary to register a listener. It’s sufficient to handle these events using only an observer.

Events published to CDI include:

Warning
ServiceDestroyEvent support during application shutdown depends on each specific implementation.

The example here uses the @Observes annotation to listen to ServiceInitEvent:

public class BootstrapCustomizer {

    private void onServiceInit(@Observes
            ServiceInitEvent serviceInitEvent) {
        serviceInitEvent.addIndexHtmlRequestListener(
                this::modifyBootstrapPage);
    }

    private void modifyBootstrapPage(
            IndexHtmlResponse response) {
        response.getDocument().body().append(
                "<p>By CDI add-on</p>");
    }
}

DD8861A6-C281-4A3D-977D-FA750E3BAB5E