Environment:
- JBoss 4.2.3 GA
- Struts1 (1.3.5)
- Struts Tiles
JBoss is deploying two WAR files.
One WAR file is the application I'm interested in. It uses Struts Tiles, stored in WEB-INF\tiles-defs.xml. The application is internationalized, but uses a single tiles-defs.xml, because pages are identical and strings are all stored in message resources.
The second WAR file used to be an application, but is now just the bare minimum for a deployable WAR plus a file WEB-INF\tiles-defs_fr.xml.
The application works fine when it is the only WAR deployed, in both English and French. If the second WAR is also deployed, then my application works fine in English but an exception is raised when I switch to the French localization:
org.apache.jasper.JasperException: javax.servlet.ServletException: javax.servlet.jsp.JspException: Error - tag.getAsString : attribute 'anAttributeName' not found in context. Check tag syntax
It seems that the tiles-defs.xml packaged with my application is being used, but when toggled to French it fails to find a tiles-defs_fr.xml and goes looking in other deployed WARs for a tiles-defs_fr.xml (finding the one deployed with the second WAR), and uses that.
My expectation was that WARs would be isolated (at least their XML files, even if their JARs were shared). It seems that this is not the case, since the application deployed in one WAR is now looking in another deployed WAR for resources.
I have "solved" this by adding a loader-repository element to the jboss-web.xml file of both WARs (just that of my application wasn't enough, each with a unique string:
<class-loading>
<loader-repository>com.org:loader=uniqueName</loader-repository>
</class-loading>
However, this does not seem like the right way to solve the problem. Is there another/better way to force my applications to only use their own resource (XML in this case) files?