no

How to change the context url in jboss or wildfly

Normally when we create a new war or ear, for example demo-project.war or demo-project.war inside demo-project.ear. The context root or url ...

Normally when we create a new war or ear, for example demo-project.war or demo-project.war inside demo-project.ear. The context root or url to which we can access the web application is:

http://localhost:8080/demo-project

But what if we want to change context root or in this case demo-project to let's say "demo" only.

Steps:
1.) In the web project create a new file: src/main/webapp/WEB-INF/jboss-web.xml

2.) Enter the following content
<jboss-web>
    <context-root>demo</context-root>
</jboss-web>

Related

wildfly 191493427423154497

Post a Comment Default Comments

2 comments

Anonymous said...

Is it possible to add multiple context roots?
My requirement is to use same application with 2 context roots.
Eg: localhost:8080/app1/ & localhost:8080/app2/

czetsuya said...

Hi, to do that you might want to use an apache server in front.

item