2 Replies Latest reply on Jun 26, 2002 11:27 PM by buster

    Development and Testing

    buster

      Do I really have to deploy a new war/jar/ear event if I make a one line change just to test my application. Lets say I make a one line change in a servlet, do I have to repackage it and deploy the war just to test this one change?

      Thanks
      Steve Buster

        • 1. Re: Development and Testing
          sgturner

          No. You have 2 options.

          Option #1. - Create an Ant file to do all the work of repackaging.

          Option #2. Create directories in the deploy directory whose name mimics exactly the contents of your ear file. So, if your ear file is foo.ear, create a directory in deploy called foo.ear. If your foo.ear file contains a goo.war file, then create a directory under foo.ear called goo.war. Etc.....

          • 2. Re: Development and Testing
            buster

            Thanks, that helps alot. Is there a way to restart just a web application like in Tomcat?

            Thanks