新建的 Maven 项目中没有 Library

正在回答

登陆购买课程后可参与讨论,去登陆

3回答

同学你好,可以参考如下步骤进行操作:

1,在项目上右键-->Maven--> Update Project

Update Project功能本身是用于当项目结构发生一些变化时更新项目,主要是更新.classpath文件,让Eclipse按照最新的.classpath文件的内容处理项目。

2,直接改.classpath文件

Maven Dependencies 这个library在.classpath文件中是这么标记的:

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
	<attributes>
		<attribute name="maven.pomderived" value="true"/>
	</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
	<attributes>
		<attribute name="maven.pomderived" value="true"/>
	 </attributes>
</classpathentry>

把这段添加进去.classpath文件,放在<classpath>标签下,比如这样:

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="src" output="target/classes" path="src/main/java">
		<attributes>
			<attribute name="optional" value="true"/>
			<attribute name="maven.pomderived" value="true"/>
		</attributes>
	</classpathentry>
	<classpathentry including="**/*.java" kind="src" path="src/main/resources"/>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
		<attributes>
			<attribute name="maven.pomderived" value="true"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
		<attributes>
			<attribute name="maven.pomderived" value="true"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="output" path="target/classes"/>
</classpath>

如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~

  • 皮皮怪下士 提问者 #1
    新建的项目目录里只有 .project 和一个 pom.xml 文件,没有.classpath文件诶。。。
    2019-05-27 15:32:36
吃吃吃鱼的猫 2019-05-27 16:56:03

楼上说的对哦~链接中步骤也比较全,同学重新创建一个项目参考一下哦~

如果我的回答解决了你的疑惑,请采纳。祝:学习愉快~


不正经的程序员 2019-05-27 16:54:31

.classpath文件都没的话,需要重新建项目。

你可以根据这个链接重新创建一下,很详细的

https://blog.csdn.net/xihuanyuye/article/details/79571817


问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师