Documentation

Documentation versions (currently viewingVaadin 23)

You are viewing documentation for Vaadin 23. View latest documentation

Using a custom legacy UI class

Note
This is intended for advanced cases only, where using the recommended upgrade path isn’t enough to cover specific logic that can’t be easily ported to Flow.

If you have a need for a specific UI class to be used for the legacy Vaadin UI you can have the UI class extend MprUI. The UI can not be used for layout purposes.

public class MyCustomUI extends MprUI {
    @Override
    protected void init(VaadinRequest request) {
        super.init(request);
    }
}
Note
You need to call super.init(request) if you need to override the init method

Then you need to tell the application that this class should be used with the annotation @LegacyUI() by defining it in a class implementing AppShellConfigurator.

@LegacyUI(MyCustomUI.class)
public class Configuration implements AppShellConfigurator {
}

Now using the application you get a MyCustomUI instead of the default MprUI.

B25DFC7E-C56E-450E-9178-05C7ACA90032