如何在一个.ear文件中包含两个.war文件?

时间:2010-02-08 10:28:32

标签: java jboss war ear

我使用jboss 4.0.2,我想在一个.ear文件中有两个.war文件。

1 个答案:

答案 0 :(得分:9)

我原本以为这在EAR application.xml文件的结构中是不言而喻的,但是这里有两个WAR的示例:

<?xml version="1.0" encoding="UTF-8"?>
<application>
  <module>
    <web>
      <web-uri>/directory/of/war1</web-uri>
      <context-root>/war1</context-root>
    </web>
  </module>
  <module>
    <web>
      <web-uri>/directory/of/war2</web-uri>
      <context-root>/war2</context-root>
    </web>
  </module>
</application>