JBoss EAR deployment order

本小妞迷上赌 提交于 2019-12-06 01:15:53

That link describes how to do deployment order inside EAR not between two ears.

You should be configuring jboss-all.xml with deployment dependencies.

content should look something like this:

<jboss umlns="urn:jboss:1.0">
    <jboss-deployment-dependencies xmlns="urn:jboss:deployment-dependencies:1.0">
        <dependency name="app1.ear" />
        <dependency name="app2.ear" />
        <dependency name="app3.ear" />
    </jboss-deployment-dependencies>
</jboss>

and add this to all your ears but make sure you don't do cyclic deps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!