java.lang.ClassNotFoundException: org.springframework.web.util.IntrospectorCleanupListener错误解决方案...
出現上面的問題,一般項目是Maven結構的,項目的Maven Dependencies沒有添加到項目的編譯路徑下或者添加的路徑不對
解決方案1:
將項目 .classpath ?文件中
<classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="org.eclipse.jst.component.dependency"?value="true"/>
</attributes>
</classpathentry>?
改為:
<classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
</attributes>
</classpathentry>
解決方案2:選中項目->右鍵Properties->選擇Deployment Assemby->選擇Add->選中Java?Build Path Entries->Next->選擇Maven Dependencies->Finish->Apply->OK
PS:若 Maven Dependencies 已經存在,先選中remove掉,再ADD進去即可
然后重啟server即可!
轉載(http://blog.csdn.net/wwkms/article/details/53070286)
轉載于:https://www.cnblogs.com/jeanz/p/7399079.html
總結
以上是生活随笔為你收集整理的java.lang.ClassNotFoundException: org.springframework.web.util.IntrospectorCleanupListener错误解决方案...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 42.angularJS自定义服务
- 下一篇: 《软件需求》阅读笔记之一