Say your apps are A and B..... if the geronimo plan for B has a
dependency on A, A will always be started first.
<geronimo-web....>
<environment>
<moduleId>
<groupId>org.myco</groupId>
<artifactId>B</artifactId>
<version>1.0-SNAPSHOT</version>
<type>car</type>
</moduleId>
<dependencies>
<dependency>
<groupId>org.myco</groupId>
<artifactId>A</artifactId>
<type>car<type>
<import>services</import>
</dependency>
...
</dependencies>
...
</environment>
...
</geronimo-web>
If you leave out the <import> tag the classloader for A will be a
parent classloader for B.... this may or may not be desirable.
thanks
david jencks
On Nov 20, 2008, at 6:56 AM, Jazon wrote:
yes, but the problem is, every time I re-deploy an application, that
application moves to the very bottom. I have to manually move it back.
On Thu, Nov 20, 2008 at 8:34 AM, Ivan <[EMAIL PROTECTED]> wrote:
By default, the starting order should according to the configuration
in the config.xml file.
2008/11/20 Jazon <[EMAIL PROTECTED]>
hi,
I have two applications deployed to Geronimo, I'd like to make sure
one application is started before another.
Can I specify the starting sequence of applications?
Thanks
--
Ivan