JBoss 4.3 eap can't find war in the ear

I am trying to deploy an ear in JBoss. In application.xml there are entries similar to:

<module  id="Core_JavaModule">
  <java>APP-INF/lib/core.jar</java>
</module>

<module id="Public_WebModule">
 <web>
  <web-uri>public.war</web-uri>
  <context-root>/</context-root>
 </web>
</module> 

The core.jar file reads in order, but when it tries to read public.war, I get:

org.jboss.deployment.DeploymentException: Failed to find module file: public.war

I confirmed that there is a military catalog; this is a blown up war. Not a military file. Is JBoss a war file? Or will he smash a military catalog?

+3
source share
1 answer

This should be good, we use exploded WARS in disassembled EARs in JBoss 4.2 and this is normal.

, , , . EAR, JBoss, , JBoss EAR EAR. , .

, EAR JBoss .

EAR.

+1

Source: https://habr.com/ru/post/1713908/


All Articles