I\'m developing web application. Everything was working fine till yesterday.
Something happened yesterday (no idea what exactly) and Eclipse is not deploying my applicat
I have the same problem, my solution is:
For a few hours I tried to deploy and start application using Servers window but it didn't worked. My war was not placed in wptwebapps folder, manually deplying war to webapps worked.
Using Run Configurations made my app finally deployable...
Got it :)
Usually caused when eclipse is reffering to another (or in correct web folder, may be webConent)
I encountered with same error and resolved it with redeployment after removing deployment.
look into org.eclipse.wst.common.component file in your web project in eclipse.
< wb-module deploy-name="PROJECT_NAME">
check the PROJECT_NAME. It might got messed up. Similarly look into .project file.
Hope this helps!!
In my case, I configured an external Maven installation, and I made sure to be using a JDK instead of a JRE (in the eclipse configuration, and in the Server Environment). You can run a Maven Build of the project from eclipse to check everything is working ok.
After that, I updated the maven projects, cleaned and built the projects, cleaned the server, and redeployed the artifacts.
The only way I found which works for me is adding an entry into the "Web Deployment Assembly"
Project webapp > Properties > Deployment Assembly
Add ...
Source : "/target/classes"
Deploy Path : "WEB-INF/classes"