I fetched an existing maven from my repo then when I open with eclipse I get this error:
Error occured processing XML 'Unable to load schema mappings from location [META-INF/spring.schemas]'.
See Error Log for more details security-context.xml /myapp/src/main/webapp/WEB-INF/spring/appServlet Unknown Spring Beans Problem
Do I need to put spring.schemas into META-INF folder manually?
Try to clean your jars, maybe one of them is corrupted.
Right click on your projects -> Run As -> Maven clean.
Then:
Right click on your projects -> Run As -> Maven build.
You can do it from the command line with “mvn clean” and “mvn build”