您好,登錄后才能下訂單哦!
項(xiàng)目中沒有build path如何解決?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
通過(guò)eclipse的svn資源庫(kù)添加的項(xiàng)目,顯示的方式和直接創(chuàng)建的不一樣,且沒有Java Build Path,無(wú)法添加jre和jar包。
原因是,在項(xiàng)目里面找到.project ,寫入
<natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures>
natures是標(biāo)志項(xiàng)目是屬于什么類型的項(xiàng)目的。
加完之后就可以build path了,切換了jdk版本。
只有jdk,不能識(shí)別maven項(xiàng)目。應(yīng)該如下圖有三個(gè),但是我進(jìn)入之后只有JRE。
將.m2下的所有jar包全部刪掉了,讓項(xiàng)目重新去下載,問(wèn)題解決。
.project文件的屬性:
1.工程名:<name></name>
2.工程注釋描述:<comment></comment>
3.Eclipse插件:<natures></natures>
4.加載方式:<buildSpec></buildSpec>
關(guān)于里面能有哪些值,我這里就不多介紹了。而org.eclipse.jdt.core.javanature 是Java Development Toolkit 的插件,很多JAVA API 等信息,都需要這個(gè)進(jìn)行關(guān)聯(lián)。
項(xiàng)目里面還有.classpath 文件,包含了你需要的jar包,eclipse 會(huì)遍歷里面內(nèi)容,屬性有:
1.源文件位置:src
2.核心包:con
3.jar 位置:lib
4.輸出class位置:output
補(bǔ)充:創(chuàng)建的maven工程沒有build path
首先存在第一個(gè)問(wèn)題:創(chuàng)建完成之后沒有.classpath文件 所以需要新建一個(gè).classpath文件 內(nèi)容如下
<?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 kind="src" output="target/test-classes" path="src/test/java"> <attributes> <attribute name="optional" value="true"/> <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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="target/classes"/> </classpath>
第二個(gè)問(wèn)題:.project 文件內(nèi)容缺失
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>hongxing-shanji</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.m2e.core.maven2Builder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.m2e.core.maven2Nature</nature> </natures> </projectDescription>
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>ms-navigation-api</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.wst.common.project.facet.core.builder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.wst.validation.validationbuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.m2e.core.maven2Builder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.m2e.core.maven2Nature</nature> <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.eclipse.wst.jsdt.core.jsNature</nature> </natures> </projectDescription>
關(guān)于項(xiàng)目中沒有build path如何解決問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。