There is a java web application. Developed in Idea 14, Tomcat 8. Unexpectedly, the server stopped issuing static pages located in the WebContent folder.

I attach the server configuration file, the project structure, as well as web.xml and other configurations. I attach server configuration files:

Project Structure

web.xml and other configurations

When opening a project from another machine, everything works fine. I tried to delete the daddy .IntelliJIdea14 for any case - it did not help.

  • All information relating to the question should be in the question itself. External links may cease to exist, then your question will lose its meaning. - Dmitriy Simushev
  • @pandal Unexpectedly, the server stopped issuing static pages located in the WebContent folder. I correctly understood that some time ago, everything worked? - Vladimir Glinskikh
  • @ Vladimir exactly. It seems that everything happened after debugging the application (but not 100% sure). - pandal
  • @pandal This is a reason to think about a distributed version control system. There will be no such questions. In Intellij Idea try using local history. Perhaps help. - Vladimir Glinskikh

1 answer 1

Maybe port 8080 was taken by someone else. Try a different port. You can determine who is busy with the port using the netstat console command or search for a similar utility.

  • Alas, the problem remained even with a different port. - pandal