April 2018
Intermediate to advanced
202 pages
4h 48m
English
A Vaadin application in its simplest form is a Servlet that delegates user interface logic to a UI implementation. The vaadin-server dependency includes the Servlet implementation: the VaadinServlet class. Let’s configure one.
Create a new directory with the name java inside the src/main directory.
Create a new package with the name packt.vaadin.datacentric.chapter01, and add a simple UI implementation inside this package:
public class VaadinUI extends UI { @Override protected ...Read now
Unlock full access