Jboss deploying in root context

狂风中的少年 提交于 2020-01-11 02:17:13

问题


Yes, i know about enable-welcome-root=false, but cant find this in files. Use wildfly final or jboss eap 6.2. Where it is? And why i need to add jboss-web.xml in WEB-INF?


回答1:


The file in question is standalone.xml and is located in the following directory:

%JBOSS_HOME%/configuration/standalone.xml

You need to add enable-welcome-root=false in your virtual server definition in your standalone:

<virtual-server name="localhost" enable-welcome-root="false">

And create a jboss-web.xml file with the following:

<?xml version="1.0" encoding="UTF-8"?>

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



回答2:


And building on the answer provided by BelgianMyWaffle.

While J2EE defines the execution environment of a Java app it does not mandate how application servers are configured, so each has their own way to customize behaviour.

The following describes the jboss-web.xml:

  • JBoss Web Application Deployment Descriptor

The jboss-web.xml is an XML file containing the JBossWeb specific behaviour of a webapp. It replaces the Tomcat context.xml file. You need only to use it if you want properties and behaviour that extent the web.xml of the Servlet 3.0 specifications.

And the following lists all the various mechanisms supported by wildfly for customizing application deployment

  • Deployment Descriptors used In WildFly

JBoss Web deployment descriptor. This can be use to override settings from web.xml, and to set WildFly specific options




回答3:


Solution: Clean wildfly server, new clean project, just added jboss-web.xml to WEB-INF. Normal deploying and everything works fine.



来源:https://stackoverflow.com/questions/21957060/jboss-deploying-in-root-context

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!