第一個程式 - 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 / 以檢視你的應用程式已啟動並正在執行。