Slide 10
Slide 10 text
Web Server
(Payara, WildFly, Tomcat,
Jetty, Glassfish,
Weblogic…)
@Route("greeting")
public class HelloWorld extends VerticalLayout {
public HelloWorld() {
TextField textField = new TextField("Name");
Button button = new Button("Greet");
button.addClickListener(event ->
add(new Span("Hi, " + textField.getValue())));
add(textField, button);
}
}
app.war