Using this tutorial https://vaadin.com/springroo, i was able to get a Spring Roo project started and configured with Vaadin add-on. I am having trouble running this application on a tomcat server in a container. I have tomcat already installed in my eclipse environment and configured but dont know what the command is in Spring ROO shell that allows me to run this project?
How do you set up tomcat with a Spring Roo project using the vaadin add-on?
To deploy your application in a Web container during project development you have several options available:
Deploy from your shell / command line (without the need to assemble a war archive):
run 'mvn tomcat:run' in the root of your project (not inside the Roo shell) to deploy to a Tomcat container
run 'mvn jetty:run' in the root of your project (not inside the Roo shell) to deploy to a Jetty container
Beginning With Roo character 2.9. Step 6: Loading the Web Server
EDIT 1
If you have not installed maven, read this article
If you want run your project using jetty, read this article