How do you specify the root context in your <web-app> tags in web.xml?

90,419

This can't be done in an appserver agnostic way. Context root isn't part of the standard web.xml file. It's either specified when you deploy the app or in an appserver specific descriptor.

Note: the above applies to deploying WAR files. EAR files are a different story and the context can be specified as part of the application.xml deployment descriptor.

Share:
90,419
sewardrobert
Author by

sewardrobert

Updated on November 27, 2020

Comments

  • sewardrobert
    sewardrobert over 3 years

    I would like to specify the root context of my Java web application in my WAR file. How can I do this using valid web-app XML in a web.xml file?

    Oh, yes I would like to do this in an application server agnostic way.