RE: Multiple war files for a single webapp or context

2011-10-17 Thread Caldarale, Charles R
> From: Ziggy [mailto:zigg...@gmail.com] > Subject: Multiple war files for a single webapp or context > If any of the files change (either the jsp, css, js or java > files) i have to always rebuild the whole war file. This > means i deploy every single file on every release.

Re: Multiple war files for a single webapp or context

2011-10-17 Thread Konstantin Kolinko
2011/10/17 Ziggy : > Would the nested context approach allow access to session data from one war > file to the other? > No. Session id may be the same, but Session object itself will be different. All webapps, by definition, are independent of each other.

Re: Multiple war files for a single webapp or context

2011-10-17 Thread Ziggy
Would the nested context approach allow access to session data from one war file to the other? Thanks On Mon, Oct 17, 2011 at 12:08 PM, Konstantin Kolinko wrote: > 2011/10/17 Ziggy : > > I have an application that has the following structure > > > >$TOMCAT_HOME/webapps/myapp > >

Re: Multiple war files for a single webapp or context

2011-10-17 Thread Konstantin Kolinko
2011/10/17 Ziggy : > I have an application that has the following structure > >    $TOMCAT_HOME/webapps/myapp >                |-css >                    |-myapp.css >                |-js >                    |-myapp.js >                |-forum >                    |-index.jsp >