I'm creating a new web archive. I've added a /WEB-INF/web.xml file with the tag
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
However, whenever I browse to
http://localhost:8080/MyWebApp/, I see a page that simply says "TODO write content". I have to explicitly go to
http://localhost:8080/MyWebApp/index.html to see my welcome page.
Did I miss something, or am I misunderstanding the concept of welcome pages? I'd like the index page to show by default if the user selects the empty directory. Also, I don't know what page/servlet is generating the content I see if I browse the root.