我使用jboss 4.0.2,我想在一个.ear文件中有两个.war文件。
答案 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>