<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to create WAR file]]></title><description><![CDATA[<p dir="auto">Hello!  How do you create a .war file to be deployed on a Linux Tomcat server?</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.mango-os.com/topic/513/how-to-create-war-file</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 06:19:29 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/513.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Sep 2010 04:46:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to create WAR file on Mon, 13 Sep 2010 13:44:27 GMT]]></title><description><![CDATA[<p dir="auto">It is generally an automated task of the ant build tool or similar, but you can manually create the war file:</p>
<ul>
<li>
<p dir="auto">Open a command prompt and browse to your (unziped) app dir, lets say it is in ROOT folder of tomcat dir, so go to &lt;Tomcat_home&gt;\webapps\ROOT</p>
</li>
<li>
<p dir="auto">Use the java archive command 'jar' to bundle up your application</p>
<pre><code>  jar -cvf mango-1.10.0.war mango-1.10.0
</code></pre>
</li>
</ul>
<p dir="auto">In English: "compress everything in this directory into a file named mango-1.10.0.war"  (c=create, v=verbose, f=file)</p>
<p dir="auto">You can find addtional info here:<br />
<a href="http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/WCC3.html" rel="nofollow ugc">http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/WCC3.html</a></p>
]]></description><link>https://forum.mango-os.com/post/4291</link><guid isPermaLink="true">https://forum.mango-os.com/post/4291</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Mon, 13 Sep 2010 13:44:27 GMT</pubDate></item></channel></rss>