用 ear 文件中包含的自定义应用程序替换 Wildfly 10 主页

Replace Wildfly 10 homepage with a custom application contained in an ear file

我正在尝试用我自己的 Web 应用程序之一替换 Wildfly 10 默认主页(从 http://hostname:port 访问)。
我找到了一个很好的方法,通过删除我的 wildfly 的 standalone.xml 的 undertow 子系统的某些部分,并将 war 添加到 default-web-module.
我的问题是我没有 war,我有一只耳朵(里面有一个 war),但它不起作用。

以下是我的 standalone.xml 文件的底流部分:

<subsystem xmlns="urn:jboss:domain:undertow:3.1">
    <buffer-cache name="default"/>
    <server name="default-server">
        <http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
        <https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/>
        <host name="default-host" alias="localhost" default-web-module="myear.ear/mywar.war">
            <access-log pattern="%{i,X-Forwarded-For} %h %{i,SM_UNIVERSALID} %t %H %p %U %q %s %D %T" prefix="http-in" suffix=".log"/>
        </host>
    </server>
    <servlet-container name="default">
        <jsp-config/>
        <websockets/>
    </servlet-container>            
    <filters>
        <response-header name="server-header" header-name="Server" header-value="WildFly/10"/>
        <response-header name="x-powered-by-header" header-name="X-Powered-By" header-value="Undertow/1"/>
    </filters>
</subsystem>

这个解决方案可以用耳朵代替 war,还是我必须找到其他方法?

提前谢谢你,

塞布

最后,我通过将 WildFly 的 welcome-content 文件夹的 index.html 页面重定向到我的应用程序解决了这个问题,它更简单,而且效果很好。

塞布