I have an application runs fine on Jboss 4.2.3. I am trying to deploy it on Jboss 5.1.0.GA but having some issues with the order in which wars are deployed.
The wars need to be deployed in the order specified by application.xml.
I did some search and found out that module order strict doesn't work on Jboss 5.1. Can anyone tell me how do I specify dependency between wars?
Thanks.
Kees Jan Koster
Ranch Hand
Joined: Mar 31, 2009
Posts: 222
posted
0
Dear Anu,
Wars should not be dependent. If you have that, your design is flawed (and you are not adhering to the servlet spec).
Please keep in mind that one war may not be deployed while another is, so there is no way to guarantee that they are both present and loaded. They may alse be deployed in separate containers.
If you have a dependency, you have to break it and change your app. Perhaps you can go through the database, or have one WAR call web services on the other. The absence of the other war is just something you will have to learn to live with.