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

Sorry for beginner's questions but I wonder how can I set the root servlet in Tomcat 6? For example I want to access my servlet on

localhost:8080, not on

localhost:8080/myservlet

Thanks!

share|improve this question

3 Answers

up vote 6 down vote accepted

deploy an web app with context root /
and set servlet-mapping in web.xml as

<servlet-mapping>
  ..
  <url-pattern>/</url-pattern>
</servlet-mapping>  
share|improve this answer
Hello, thank you for reply but servlet's web.xml or server's? – gennad Nov 14 '10 at 13:41
1  
@gennad application's web.xml – Jigar Joshi Nov 14 '10 at 13:42
Oh, sorry, really application's. Thanks a lot for your help!!! – gennad Nov 15 '10 at 17:59
@gennad You are Welcome :) – Jigar Joshi Nov 15 '10 at 17:59

From the Tomcat 6 context configuration documentation:

Context elements may be explicitly defined ... (snip) ... in individual files (with a ".xml" extension) in the $CATALINA_BASE/conf/[enginename]/[hostname]/ directory. The name of the file (less the .xml extension) will be used as the context path. Multi-level context paths may be defined using #, e.g. foo#bar.xml for a context path of /foo/bar. The default web application may be defined by using a file called ROOT.xml.

You must also map the servlet in that application to the root path (/).

share|improve this answer

I did the following in my web.xml. I mapped servlet as index.html.

<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>myservlet</welcome-file>
</welcome-file-list>

and then the servlet itself:

<servlet>
<description></description>
<display-name>myservlet</display-name>
<servlet-name>myservlet</servlet-name>
<servlet-class>myservlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>myservlet</servlet-name>
<url-pattern>/index.html</url-pattern>
</servlet-mapping>
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.