1.
standalone.xml中修改:web
enable-welcome-root="true" 改成 falsesocket
<socket-binding name="http" port="80"/>server
2.
在第一個項目中添加jboss-web.xml(和web.xml一個目錄)。xml
<?xml version='1.0' encoding='UTF-8' ?>
<jboss-web>
<context-root>/</context-root>
<virtual-host>YouthFortyA</virtual-host>
</jboss-web>io
第二個:
<?xml version='1.0' encoding='UTF-8' ?>
<jboss-web>
<context-root>/</context-root>
<virtual-host>YouthFortyB</virtual-host>
</jboss-web>module
依次...coding
3.
在standalone.xml文件中含有virtual-server的subsystem標籤中添加如下內容:程序
<virtual-server name="YouthFortyA" default-web-module="x">
<alias name="x.youthforty.com"/>
</virtual-server>
<virtual-server name="YouthFortyB" default-web-module="x">
<alias name="xx.youthforty.com"/>
</virtual-server>項目
依次...di
virtual-server name="YouthFortyA"中的YouthFortyA對應項目中jboss-web.xml的virtual-host。default-web-module="x"中x爲x.war,即項目程序名稱,Jboss會經過這個名稱映射到對應的項目中去。alias name="xx.youthforty.com"中的xx.youthforty.com是項目網址。