MAVEN遇见的奇葩问题

本来跑的好好的,洒家小手一贱,点到了右键->Maven->Update Project,然后项目就变红了MAVEN遇见的奇葩问题

找了大半天愣是找不到哪里出的问题MAVEN遇见的奇葩问题,求大神指教,maven刚学好多都不明白。

然后就是放服务器里跑,跑出来一个

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

当时我就蛋疼了,翻出来web.xml发现

 <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
    </listener>  

这一句还在,翻出来Maven Depencies发现spring的包都老老实实的呆着呢

MAVEN遇见的奇葩问题

百思不得其解,就去问google,翻出来一个解决方案

http://*.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".

等等等等....这界面怎么这么眼熟...这东西我不是配过吗!!!!!

总之奇葩的事情就那么发生了....我决定还是学习命令行的Maven,eclipse下的Maven已经不是我能驾驭的了的了MAVEN遇见的奇葩问题

转载于:https://my.oschina.net/Kaidy/blog/110939