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.
|
3 years ago | |
---|---|---|
.settings | 3 years ago | |
src/main | 3 years ago | |
.classpath | 3 years ago | |
.gitignore | 3 years ago | |
.project | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
Vaadin_Presentation.ppt | 3 years ago | |
pom.xml | 3 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