Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that I can rename my webapp (or it's WAR file) to ROOT but this is a terrible way to do it, IMHO. Now I checked out the tomcat doc & it says

It is NOT recommended to place elements directly in the server.xml file

So I tried doing it another method that it suggested.

Individual Context elements may be explicitly defined: In an individual file at /META-INF/context.xml inside the application files.

So I created a /META-INF/context.xml with the following code,

<?xml version="1.0" encoding="UTF-8"?>
<Context antiJARLocking="true" path="/"/>

But after deploying when I restarted the server it still failed to load the context at "/", it still loaded it with the "/<WEB_APP_NAME>"

Any pointers helpful. Thanks.

share|improve this question

5 Answers

up vote 20 down vote accepted

What you can do is the following;

Add a file called ROOT.xml in <catalina_home>/conf/Catalina/localhost/

This ROOT.xml will override the default settings for the root context of the tomcat installation for that engine and host (Catalina and localhost).

Enter the following to the ROOT.xml file;

<Context 
  docBase="<yourApp>" 
  path="" 
  reloadable="true" 
/>

Here, <yourApp> is the name of, well, your app.. :)

And there you go, your application is now the default application and will show up on http://localhost:8080

However, there is one side effect; your application will be loaded twice. Once for localhost:8080 and once for localhost:8080/yourApp. To fix this you can put your application OUTSIDE <catalina_home>/webapps and use a relative or absolute path in the ROOT.xml's path-tag. Something like this;

<Context 
  docBase="/opt/mywebapps/<yourApp>" 
  path="" 
  reloadable="true" 
/>

And then it should be all OK!

share|improve this answer
Down voted? Ok, but why? If there is a better alternative, let me know too! :D – Paaske Jun 27 '12 at 10:25
Will this work with other wars in the regular webapps folder? – chrislovecnm Oct 3 '12 at 19:11
1  
looking at the docs tomcat.apache.org/tomcat-7.0-doc/config/context.html docbase is the path/to/yourApp and path must be "" (so an empty string) meaning the root context – Fabio Oct 18 '12 at 22:01
@chrislovecnm, yes, you can use both methods in parallell. – Paaske Oct 22 '12 at 7:58
1  
Setting the path attribute is not valid in this case (as per the docs) – Mark Thomas Feb 20 at 21:01
show 4 more comments

I found more simple solution for the same which work for me on Apache Tomcat/7.0.23. In context.xml of my web applicaiton set docBase="/":

<Context docBase="/">
   ...
</Context>

my application is placed in default place /webapps/

UPD: Sorry it is not working, i have ROOT folder in webapps with my extracted war :'(

share|improve this answer
Hmm. I will try it out. Thanks for posting. – Chantz Nov 7 '12 at 21:34
3  
Completely, totally and utterly wrong and a security hole a mile wide. – Mark Thomas Feb 20 at 21:00

I have also faced this problem with tomcat 7.0. Yes in this version you can not make changes directly into the server.xml file. I have used above method overriding of default settings for the root context.

I have made a ROOT.xml file in /Catalina/localhost directory and my apllication running successfully.

share|improve this answer
1  
Incorrect. You can specify Context elements in server.xml it is just not recommended. – Mark Thomas Feb 20 at 21:01

Follows the only solutions that worked for me. Add this to the Host node in the conf/server.xml

<Context path="" docBase="yourAppContextName">

  <!-- Default set of monitored resources -->
  <WatchedResource>WEB-INF/web.xml</WatchedResource>

</Context>
share|improve this answer

I was able to deploy the war as ROOT##myAPP.war without needing to define context.xml or making changes to server.xml.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.