第一个程序 - Hello World

复制粘贴此代码并启动你的程序:

@Theme(ValoTheme.THEME_NAME) //[optional] adds Vaadin built in theming 
public class SampleUI extends UI {
    
@Override
protected void init(VaadinRequest request) {
         final VerticalLayout rootLayout = new VerticalLayout();
         Label label = new Label("Hello World"!);
         rootLayout.addComponent(label);
         setContent(rootLayout);
     }
 }

在 lauching 成功后,请导航到 localhost:8080 / yourApplicationNamehttp:// localhost:8080 / 以查看你的应用程序已启动并正在运行。