Issue
Recently my Spring MVC Java app, developed in Eclipse Indigo, seemed to lose it's connection to my "lib" folder where all my jars are (there were no jars found for my project anymore).
How do I fix this?
Solution
For me, the fix was simple:
- Go here in the Eclipse menu: Project | Properties | Project Facets
- Ensure "Java" and "Dynamic Web Project" are selected
- Click OK
You may need to also do this:
- Go here in the Eclipse menu: Project | Properties | Java Build Path | Libraries
- Remove "Web App Libraries"
- Click "Add Library"
- Choose "Web App Library". Click "Next"
- Choose your project in the drop down
- Click OK
Answered By - Brad Parks