在同一个 jboss-4.0.3 中部署两个域名不同但上下文路径相同的 war

Deploye two wars with different domain name but same context-path in same jboss-4.0.3

我的机器上有两个 Web 应用程序 wars STORE_ABC.warSTORE_DEF.war 以及一个 JBoss 服务器 运行。我想在我的 jboss 中部署具有相同上下文路径的 war,如下所示。

http://localhost:8080/home 对于 STORE_ABC.war

http://testsite1:8080/home 对于 STORE_DEF.war

jboss-web.xml 对于 STORE_ABC.warSTORE_DEF.war

<jboss-web>
   <context-root>/</context-root>
</jboss-web>

如何实现以上配置?

我已经在文件夹 ${jboss-home}server\default\deploy\jbossweb-tomcat55.sar 文件夹内的 server.xml 中添加了另一个主机 vhost2 如下:

<Server>
<Service name="jboss.web"
  className="org.jboss.web.tomcat.tc5.StandardService">
  <Connector port="8080" address="${jboss.bind.address}"
     maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
     emptySessionPath="true"
     enableLookups="false" redirectPort="443" acceptCount="100"
     connectionTimeout="20000" disableUploadTimeout="true"/>

  <Connector protocol="HTTP/1.1" port="8081" address="${jboss.bind.address}" 
    redirectPort="${jboss.web.https.port}" />


  <Connector port="8089" address="${jboss.bind.address}"
     emptySessionPath="true" enableLookups="false" redirectPort="443" 
     protocol="AJP/1.3"/>

  <Connector port="8445" address="${jboss.bind.address}"
       maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
       emptySessionPath="true"
       scheme="https" secure="true" clientAuth="false" 
       keystoreFile="${jboss.server.home.dir}/conf/bookstore.keystore"
       keystorePass="bookstore" sslProtocol = "TLS" allowTrace="true"/>

   <Engine name="jboss.web" defaultHost="localhost">
     <Realm className="org.jboss.web.tomcat.security.JBossSecurityMgrRealm"
        certificatePrincipal="org.jboss.security.auth.certs.SubjectDNMapping"
        />
    <Host name="localhost"
        autoDeploy="false" deployOnStartup="false" deployXML="false">
     </Host>
    <Host name="vhost2" autoDeploy="false" 
              deployOnStartup="false" deployXML="false">
                   <Alias>testsite1</Alias>  
            <Valve className="org.apache.catalina.valves.AccessLogValve"
                   prefix="vhost2" suffix=".log" pattern="common" 
                   directory="${jboss.server.home.dir}/log"/>
            <DefaultContext cookies="true" crossContext="true" override="true"/>
        </Host>
  </Engine>
</Service>
</Server>

然后我在 WEB-INF 文件夹中的 STORE-DEF.war 中添加了一个新文件 jboss-web.xml,如下所示:

<jboss-web>
   <context-root>/</context-root>
  <virtual-host>testsite1</virtual-host>
</jboss-web>

现在我可以从 URL http://localhost:8080/home 访问 STORE-ABC.war 和 URL http://testsite1:8080/home.

STORE-DEF.war

注意 - 不要忘记在 hosts 文件中添加 127.0.0.1 testsite1