geronimo-iia / winstone

Winstone is a servlet container that was written out of a desire to provide servlet functionality without the bloat that full J2EE compliance introduces.
GNU Lesser General Public License v2.1
22 stars 3 forks source link

Deploy several webapplication from different folders #9

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

You can deploy several webapp under one instance of keystone by using a 
external directory where you could put all your webapp.

Use "--webappsDir" command line option for that (You could see more information 
on this page http://code.google.com/p/winstone/wiki/CmdLineOption )

Under this directory, each sub folder will be used a webapplication root as war 
file.

Recently, Павел meet this requirement: he has several webapplication roots 
are in different folders. 

I known that we could use a webappdir and create a link under it for each  
target folder but, some time, when you use an OS we did not work very well with 
link...

So, I would like to introduce this parameters: "webroots" with an 's':
This parameter set n document root folder (war file or webapplication folder) 
in a dot-comma separated list.
Example: 
{{{
--webroots=../target/sample.war;./sample-2-folder
}}}
To deploy one war file "../target/sample.war" and another folder application 
"./sample-2-folder"

Original issue reported on code.google.com by jguibert@gmail.com on 23 Feb 2012 at 1:40

GoogleCodeExporter commented 9 years ago

Original comment by jguibert@gmail.com on 23 Feb 2012 at 5:01