I just began learning Spring MVC, using this tutorial.
Entire write and build (under Eclipse) went successfully and a target .war file is generated.
However, I need to test-run it and I do not wish to download and install Tomcat at the moment.
I have heard there is a way to run it from within Eclipse without requiring a full-fledged Tomcat installation. How do I do that?
`
`
In Eclipse, add a debug/run configuration for
Maven Build: Right-clickNew, and in that new configuration's Goals enter:clean install tomcat7:runNow run that configuration (right-click pom.xml > Run as > Run configuration)