最近开发的一个项目一直存放在移动硬盘上,结果前天由于查了多个设备,盘符就变了,Eclipse也就找不到了项目。把项目拷回本地磁盘后,重新打开。直接Run On Server,提示ClassNotFoundException,找不到Spring ApplicationContext。进到%ECLIPSE_WORKSPACE%\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\wtpwebapps\myapp\下查看,发现WEB-INF下没有lib目录。检查project的build path没有问题。最后google一下,发现了StackOverflow上一个回答:
<a href="http://stackoverflow.com/questions/6083501/maven-dependencies-not-visible-in-web-inf-lib">http://stackoverflow.com/questions/6083501/maven-dependencies-not-visible-in-web-inf-lib</a>
我是按照第三种方法解决的:
右键打开项目属性-->找到“Deployment Assembly”-->点击“Add”-->Java Build Path Entries-->"Maven Dependecies",保存后,重新Run On Server启动运行。