> I have just started using struts and I was wondering what is 
> the best way to
> deploy struts for development, so I can avoid using a war 
> file until it is
> ready to deploy in test or production?  The documentation seems mostly
> geared toward deployment as a war file and the ActionServlet 
> seems to need
> the action mapping described in the web.xml.
> 
> I am using weblogic 5.1 sp 9

When the container runs and sees a new war file, it unpacks it into
a directory structure next to the war file and then uses that
directory structure to run. So you only need to work within this
directory structure for development and you can forget about making
the war file until the end. This is true for Tomcat but I assume
it is also part of the JSP standard.

Devon

Reply via email to