web-appのデプロイメント記述子を変更し、ウェルカムファイルリストを変更してサーブレットを指定します。
<!– ==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マッピングで指定されたサーブレットの同一パスを与えることcarefuleうあなたは、プレーンweb.xmlにそれを行うことができます。 –
ありがとう、これは動作します! – nebulus