This is an example project for the Vaadin Framework which shows some of it's capabilities.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
D45Hub c3153d09bf Added some page titles to the examples. 3 years ago
.settings Initial Commit 4 years ago
src/main Added some page titles to the examples. 3 years ago
.classpath Initial Commit 4 years ago
.gitignore Initial Commit 4 years ago
.project Initial Commit 4 years ago
LICENSE Create LICENSE 4 years ago
README.md Update README.md 3 years ago
Vaadin_Presentation.ppt Added presentation 4 years ago
pom.xml Added Rest UI Example 4 years ago

README.md

Vaadin Example

This is a simple example for a Vaadin 8 application with an introductory presentation that only requires a Servlet 3.0 container to run.

Workflow

To compile the entire project, run "mvn install".

To run the application, run "mvn jetty:run" and open http://localhost:8080/ .

To produce a deployable production mode WAR:

  • change productionMode to true in the servlet class configuration (nested in the UI class)
  • run "mvn clean package"
  • test the war file with "mvn jetty:run-war"

Client-Side compilation

The generated maven project is using an automatically generated widgetset by default. When you add a dependency that needs client-side compilation, the maven plugin will automatically generate it for you. Your own client-side customizations can be added into package "client".

Debugging client side code

  • run "mvn vaadin:run-codeserver" on a separate console while the application is running
  • activate Super Dev Mode in the debug window of the application