Having a Spring application with Maven where all the configuration is done in Java (all configuration previously stored in web.xml is now in annotated @Configuration
files or in WebAppInitializer that extends AbstractAnnotationConfigDispatcherServletInitializer
), how can I set the context root for my application in JBoss Wildfly? The app has no web.xml
, nor jboss-web.xml
.
When the app used XML configuration the context root was set in jboss-web.xml
like this:
<jboss-web>
<context-root>mywebcontextroot</context-root>
</jboss-web>