I'm trying to change the default application of Tomcat 6 webserver to other application than "ROOT" (inside webapps folder). What is the best way to do this?
|
There are three methods:
|
|||||||
|
|
Adding a If you use In the context tag set attributes It should look something like this:
|
|||||||
|
|
According to the Apache Tomcat docs, you can change the application by creating a ROOT.xml file. See this for more info: http://tomcat.apache.org/tomcat-6.0-doc/config/context.html "The default web application may be defined by using a file called ROOT.xml." |
|||
|
|
|
You can do this in a slightly hack-y way by:
|
|||||
|
|
ROOT default app is usually Tomcat Manager - which can be useful so felt like keeping it around. so the way i made my app ROOT and kept TCmgr was like this. renamed ROOT to something else mv ROOT TCmgr then created a symbolic link whereby ROOT points to the app i want to make the default. ln -s worked for me and seemed the easiest approach. --nestochan |
|||
|
|
|
@danny-london's third method didn't work for me in Tomcat 7, but it does work if you place the ROOT.xml file in the |
|||
|
|
|
the context.xml configuration didn't work for me. Tomcat 6.0.29 complains about the docBase being inside the appBase: ... For Tomcat 5 this did actually work. So one solution is to put the application in the ROOT folder. Another very simple solution is to put an index.jsp to ROOT that redirects to my application like this: response.sendRedirect("/MyApplicationXy"); Best Regards, Jan |
|||
|
|
|
I've got a problem when configured Tomcat' If you're in a
Done. Works for me. |
||||
|
|
|
I'll look at my docs; there's a way of specifying a configuration to change the path of the root web application away from ROOT (or ROOT.war), but it seems to have changed between Tomcat 5 and 6. Found this: http://www.nabble.com/Re:-Tomcat-6-and-ROOT-application...-td20017401.html So, it seems that changing the root path (in ROOT.xml) is possible, but a bit broken -- you need to move your WAR outside of the auto-deployment directory. Mind if I ask why just renaming your file to ROOT.war isn't a workable solution? |
|||||
|
|
An alternative solution would be to create a servlet that sends a redirect to the desired default webapp and map that servlet to all urls in the ROOT webapp.
Add the above class to
And if desired you could easily modify the RedirectServlet to accept an init param to allow you to set the default webapp without having to modify the source. I'm not sure if doing this would have any negative implications, but I did test this and it does seem to work. |
||||
|
|