JBoss部署Web应用程序时的礼貌页面

时间:2015-03-12 08:49:50

标签: java deployment jboss web-deployment jboss-eap-6

我在生产环境中在JBoss EAP 6.2.0上部署Web应用程序,该应用程序使用以下配置覆盖JBoss的welcome-root:

的JBoss-web.xml中

<?xml version="1.0" encoding="UTF-8"?>
   <jboss-web>
      <security-domain>java:/jaas/other</security-domain>
      <context-root>/</context-root>
      <virtual-host>customHost</virtual-host>
   </jboss-web>

domain.xml中

<subsystem xmlns="urn:jboss:domain:web:1.5" default-virtual-server="default-host" native="false">
        <connector name="ajp" protocol="AJP/1.3" scheme="http" socket-binding="ajp"/>
        <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" redirect-port="443"/>
        <connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">
            <ssl key-alias="xxx" password="YYYY" certificate-key-file="${jboss.home.dir}/certs/custom.keystore" protocol="TLSv1"/>
        </connector>
        <virtual-server name="default-host" enable-welcome-root="false">
            <alias name="localhost"/>
        </virtual-server>
        <virtual-server name="customHost" enable-welcome-root="false" default-web-module="WeAreWeb">
            <alias name="realestate.com"/>
        </virtual-server>
    </subsystem>

正如您所看到的,我已经在配置中禁用了JBoss welcome root,因为该应用程序部署在根上下文中。

有没有办法提供正在进行的定制工作&#39;部署应用程序时要显示的页面?

0 个答案:

没有答案