在Vaadin Flow网络应用程序中设置我的UI子类的内容

时间:2018-11-12 23:05:07

标签: java user-interface vaadin vaadin-flow

在Vaadin Flow中,不再需要编写UI类的子类。但是Differences Between V10 and V8 Applications上的手册页建议我们可以这样做。

问题:Flow中的UI类没有UI::setContent方法。

我们的UI::init方法中的这行常规代码在Flow中失败:

this.setContent( layout );  // <--- No method `setContent` found in Flow

➥我们如何设置在运行时在UI子类中显示的内容?

这是我的代码,其中setContent行失败。

package com.acme;

import com.vaadin.flow.component.UI;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.server.VaadinRequest;
import com.vaadin.flow.server.VaadinServlet;
import com.vaadin.flow.server.VaadinServletConfiguration;

import javax.servlet.annotation.WebServlet;

public class MyUI extends UI {
    protected void init ( VaadinRequest request ) {
        VerticalLayout layout = new VerticalLayout();
        this.setContent( layout );
    }

    @WebServlet (
        urlPatterns = "/*",
        name = "myservlet",
        asyncSupported = true
    )
    // The UI configuration is optional
    @VaadinServletConfiguration (
        ui = MyUI.class,
        productionMode = false
    )
    public class MyServlet extends VaadinServlet {
    }
}

1 个答案:

答案 0 :(得分:1)

UI本身就是一个组件,并实现HasComponents。因此,您可以简单地调用add(Component...)方法来用组件填充它。