I have the following lines below in web.xml
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
But when I access http://localhost:8888 I received the error below:
There is no Action mapped for namespace [/] and action name
[] associated with context path [].
Isn't it be redirected to index.jsp? How to make welcome file work?