my structure of .jsp files is: WEB-INF/jsp/....; but i have the index.jsp file in WEB-INF/index.jsp folder. As well i have also another types of files in directory WEB-INF/, i would like to move the index.jsp into the folder like this: WEB-INF/jsp/index.jsp. So can i somehow change (in my conf files - not in tomcat settings) that my index page is in another folder? i tried to use this:
<welcome-file-list>
<welcome-file>jsp/index.jsp</welcome-file>
</welcome-file-list>
and many variatons of welcome-file-list but i didnt get working combination.