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!
|
|
|
deploy an web app with context root
|
|||||||||||
|
|
From the Tomcat 6 context configuration documentation:
You must also map the servlet in that application to the root path ( |
|||
|
|
|
I did the following in my web.xml. I mapped servlet as index.html.
and then the servlet itself:
|
|||
|
|