3

I just installed Eclipse for Java EE developers, Created a New Project by checking out files through SVN from a repository.

I was able to successfully generate an "exploded" web app folder through an ANT build.

How do I deploy this exploded folder (not .war file) to Tomcat? Any configuration that needs to be done?

Thanks.

Van de Graff
  • 5,043
  • 13
  • 39
  • 41

1 Answers1

2

Just make an ant target that copies the folder directly into the deploy folder of tomcat, usually $TOMCAT_HOME/webapps. Tomcat should then deploy the app in it's container.

kraftan
  • 6,272
  • 2
  • 22
  • 24