Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Building WAR package

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
CA
Hi,

How do I build a WAR package from my app (running on Tomcat 5.0) ?

Thanks
 
At its most basic level, use the jar tool :

Eg, go to your webapp's directory, and type "jar -cvf mywebapp.war *".

Tis not generally the way it is done, and people tend to use ant (a build tool) to create a war. This allows you to easily build your images, javascript files, jsp files, servlets etc into one war, from several different directorys.

--------------------------------------------------
Free Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top