我正在将一个JBoss服务存档(SAR)和WAR打包在一个带有Maven的EAR中,以便部署到JBoss。我遇到的问题是在这台服务器上运行的另一个独立WAR调用上述SAR在JBoss启动时提供的服务。由于JBoss在包含SAR的EAR之前部署独立的WAR ,因此独立的WAR会抛出错误,因为它所调用的服务尚未部署。
有没有办法让JBoss首先部署EAR?这甚至是正确的方法吗?
一种解决方法是首先手动部署EAR,然后部署调用WAR,但我不想依赖于手动部署每个EAR,因为有时JBoss只会重新启动。
答案 0 :(得分:0)
对我有用的解决方案是改变包装。我没有像原来那样将SAR和WAR包装在EAR中,而是将WAR包装在SAR中。
.ear files get deployed several priorities below .sar files并且鉴于.sar旨在扩展JBoss并且默认情况下具有高部署优先级,我推断降低.sar优先级的结果可能会产生意外后果。在我的例子中,服务器上另一个调用.sar提供的服务的Web应用程序开始失败。
要使用.sar打包.war,我使用了maven-dependency-plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-installed</id>
<phase>prepare-package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.company</groupId>
<artifactId>artifact-id</artifactId>
<type>war</type>
<version>1.0.0-BUILD-SNAPSHOT</version>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/${project.name}-${project.version}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>