I have an issue with my tomcat web application.
I made a build of frontend at first, then I moved all built files to webApp folder of maven spring boot project and then made a build with mvn clean package.
Then I deployed that war with name ROOT.war on the tomcat. When I try to connect with localhost:8080 it returns 404, but when I tried it with localhost:8080/index.html my webApp works.
I have this in my tomcat web.xml file but it didn't help me with my problem.
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
Here on this link is my whole web.xml ..
Thanks for all your answers .