Re: Deploying and building a war file

2009-12-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ziggy, On 11/9/2009 7:04 AM, Ziggy wrote: > I've got a query on the way web applications are deployed. I have an > application that has several jsp files and serlvets that are in > WEB-INF/classes. JSP files in WEB-INF/classes? Yuk. > When i deploy

RE: Deploying and building a war file

2009-11-10 Thread Karthik Nanjangude
day, November 10, 2009 1:19 PM To: Tomcat Users List Subject: Re: Deploying and building a war file Hi Ken, I do use eclipse but only for development. I cant really deploy from eclipse for several reasons. One of them being that the deployment server is a different machine from where i do the dev

Re: Deploying and building a war file

2009-11-09 Thread Ziggy
Hi Ken, I do use eclipse but only for development. I cant really deploy from eclipse for several reasons. One of them being that the deployment server is a different machine from where i do the development. Thanks On Mon, Nov 9, 2009 at 7:12 PM, Ken Bowen wrote: > If you use Eclipse (www.ecli

Re: Deploying and building a war file

2009-11-09 Thread Ken Bowen
If you use Eclipse (www.eclipse.org/ free; runs on Wins/Mac/Linux) with the web plugins, it records your deploy target, and allows you to deploy with either a war file, or in "exploded form". In the latter case, you can usually leave your web server running, make a code change, save the

RE: Deploying and building a war file

2009-11-09 Thread Martin Gainty
ant war task http://ant.apache.org/manual/CoreTasks/war.html or maven-war-plugin http://maven.apache.org/plugins/maven-war-plugin/examples/war-overlay.html (in the case of maven you MUST adhere to the directory layout suggested) either build environment will perform these tasks for you you can