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

Eclipse里开发maven项目有如下警告的解决办法:

1、Description Resource Path 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、Description Resource Path Location Type 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文件:

Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published_第1张图片


<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>


项目上右键单击打开项目属性,如下操作:

Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published_第2张图片

完成操作后点击ok,然后单击选中警告,并按ctrl+1/或者右键选择,解决问题

最后要是还存在就clean一下项目,彻底解决问题。


总结:发现问题,解决问题。

你可能感兴趣的:(Classpath entry org.maven.eclipse.MAVEN2_CLASSPATH_CONTAINER will not be exported or published)