1. 程式人生 > >Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published

Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published

Eclipse裡開發maven專案有如下警告的解決辦法:

1、Description ResourcePath Location Type Classpath entry org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published. Runtime ClassNotFoundExceptions may result.  專案名稱P/專案名稱Classpath Dependency Validator Message

2、DescriptionResource PathLocationType Classpath entry org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER will not be exported or published. Runtime ClassNotFoundExceptions may result.  專案名稱P/專案名稱Classpath Dependency Validator Message

解決辦法:

開啟navigator資源管理器,修改下面的classpath檔案:



<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER">
	<attributes>
		<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
	</attributes>
</classpathentry>
專案上右鍵單擊開啟專案屬性,如下操作:



完成操作後點擊ok,然後單擊選中警告,並按ctrl+1/或者右鍵選擇,解決問題

最後要是還存在就clean一下專案,徹底解決問題。

總結:發現問題,解決問題。