spring的maven依赖问题解决

来源:互联网 发布:windows开源吗 编辑:程序博客网 时间:2024/06/05 12:07

用spring模板生成一个mvc项目,按说是maven管理的运行没啥问题,可是一运行报错:

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

这个可以拷贝jar包的WEB-INF/lib目录下解决,但这是maven管理的项目按说不该这样,后来从网上找到一篇文章解决这个问题:


http://stackoverflow.com/questions/6210757/java-lang-classnotfoundexception-org-springframework-web-context-contextloaderl

我摘抄其中的解决方法:

1) Open the project's properties (e.g., right-click on the project's name in the project explorer and select "Properties")
2) select "Deployment Assembly"
3) Click the "Add..." button on the right margin
4) Select "Java Build Path Entries" from the menu of Directive Type and click "Next"
5) Select "Maven Dependencies" from the Java Build Path Entries menu and click "Finish".


原创粉丝点击