上QQ阅读APP看书,第一时间看更新
Time for action – deploying and running
Steps for deploying and running Vaadin applications with Maven are as follows:
- Move to the directory that Maven created for your project. If you have specified
welcome
as artifactId, then move to thewelcome
directory. - Before actually deploying the application we must compile it and package it. To do that, run the command:
mvn package
- This will take some time, so be patient.
- Now we are ready. Run the command:
mvn jetty:run
- If you haven't run this before, you will see a very verbose Maven downloading stuff.
Tip
Just in case if you want to break the old tradition:
mvn tomcat:run
- Go to
http://localhost:8080/welcome
and play with the just created Vaadin application.
What just happened?
We have successfully created, compiled, packaged, deployed, and run a Vaadin application using Maven.