I have Tomcat installed and it's working when I open a browser. I want to know that can I run a Java EE Spring MVC project without using Eclipse.
Asked
Active
Viewed 782 times
1 Answers
2
You need to create a .war
file (for example, using Export -> WAR file
) and deploy it in Tomcat (via web interface of Tomcat Manager or by placing that file into webapps
subfolder of Tomcat).

axtavt
- 239,438
- 41
- 511
- 482
-
can't i just copy paste the folders – Feb 17 '11 at 16:24
-
1@Name: I think no, since Eclipse uses different folders for compiled classes and webapp content. – axtavt Feb 17 '11 at 16:47