I have an ear file which contains 4 war files. The main reason we put those together is, that the order of startup is important, and it is easier from a deployment perspective (the customer only gets one file and does not have to worry about which versions works together).
The ear files are going to be deployed on 4 different systems, which are a bit different, so on two of the servers one of the war apps doesn't even need to be started.
The runtime environment is JBOSS 4.2.2.
Therefore my question is: What are my options to prevent the war file to be started, if I want to configure it via properties defined in properties-service.xml?
Another option, because the applications are actually spring applications, would be to prevent starting the ContextLoaderListener, but here I also haven't any idea how to do this via configuration.