Измените дескриптор развертывания вашего веб-приложения и измените список файлов приветствия, чтобы он указывал на ваш сервлет.
<!– ==Default Welcome File List========== –>
When a request URI refers to a directory, the default servlet looks for a “welcome file” within that directory and, if present, to the corresponding resource URI for display. If no welcome file is present, the default servlet either serves a directory listing, or returns a 404 status, depending on how it is configured.
If you define welcome files in your own application’s web.xml deployment descriptor, that list *replaces* the list configured here, so be sure that you include any of the default values that you wish to include.
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
измените приведенные выше строки, чтобы они указывали на путь сервлета вашего сервлета.
/ MyServlet
</welcome-file-list>
Будьте осторожны, чтобы указать тот же путь вашего сервлета, который указан в url-mapping сервлета