私のコントローラーで:
@Controller
@RequestMapping(value="Main")
/*the methods */
@RequestMapping(value="/index.do", method = RequestMethod.GET)
私のweb.xmlで:
<servlet-mapping>
<servlet-name>MyController</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>Main/index.do</welcome-file>
</welcome-file-list>
: と入力すると、期待どおりにならlocalhost/projectname/
ずlocalhost/projectname/Main/index.do
、Eclipse のコンソールに何も出力されません。
しかし、 URL 全体を試してみるとlocalhost/projectname/Main/index.do
、コントローラーは私が望むもので応答しています。
では、welcome-file-list をどのように設定すればよいでしょうか?