简体   繁体   中英

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

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.

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 .

You can use like this in web.xml.

 <env-entry> <description>web app</description> <env-entry-name>appCxtRoot</env-entry-name> <env-entry-type>java.lang.String</env-entry-type> <env-entry-value>webapp-@context-root-value@</env-entry-value> </env-entry>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM