I have an issue here with deployment order in general and the timing in particular.
I have an ear 1 which provides some functionality via a bean and some queues. The queues are configured in the standalone.xml. Another ear 2 which uses this service from ear1.
So the dependency looks like: ear1 <-- ear2
So I configured the deployment structure of ear 2 to depend on ear 1 and the deployment order itself is correct now.
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<dependencies>
<module name="deployment.ear1.ear" />
</dependencies>
</deployment>
</jboss-deployment-structure>
The deployment order is correct now, but what I now have is a race condition due to a (I guess) not initialized bean from ear 1.
When I delay the deployment of ear2, everything works fine.
Does anyone know how to control the timing of the deployment. Can one specify not only the order of the deployments via jboss-deployment-structure.xml, but also the lifecycle which needs to be reach to start the next deployments?
UPDATE
I tried to specify the actual bean jar which contains the service to be used. This is not working, too. It looks like:
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure>
<deployment>
<dependencies>
<module name="deployment.ear1.ear.bean.jar" />
</dependencies>
</deployment>
</jboss-deployment-structure>
