禁用Jboss wildfly欢迎内容

时间:2014-07-17 02:37:26

标签: jboss wildfly

我正在使用domain.sh运行wildfly,即使在使用joss-web.xml部署ROOT.war之后也无法禁用Wildfly欢迎内容     context-root / context-root

2 个答案:

答案 0 :(得分:3)

在domain / configuration / domain.xml中:

删除<location name="/" handler="welcome-content"/>

删除

<handlers>
   <file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
</handlers>

答案 1 :(得分:0)

我通过删除welcome-root文件中的以下部分,在Web应用程序的Wildfly中禁用了welcome-content..\standalone\configuration\standalone.xml

  • 删除位置

    <location name="/" handler="welcome-content"/>
    
  • 删除处理程序

    <handlers>
         <file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
    </handlers>