1. 程式人生 > >maven建立專案沒有test resources目錄結構

maven建立專案沒有test resources目錄結構

eclipse建立maven web工程時,工程下只有src/main/resources目錄(顯然這種結構是不對的),沒有相應的src/main/Java, src/test/java,src/test/resources這三個目錄,具體原因不太清楚,估計是eclipse建立maven web 專案時候的bug吧. 
解決辦法: 
1.開啟Navigator檢視 
2.找到.classpath檔案,複製以下內容

<classpath>
    <classpathentry kind="src" output="target/classes" path="src/main/java"/>
    <classpathentry
excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
<classpathentry kind="src" output="target/test-classes" path="src/test/java"/> <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/> <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <attributes> <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/> </attributes> </classpathentry
>
<classpathentry kind="output" path="target/classes"/> </classpath>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

3.重新building時候可能專案會有問題, 需要將java build path的JRE System Library換成Workspace default JRE 即可

ps 

以下是本人使用的一個標準的路徑對於的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 excluding="**" kind="src" output="target/classes" path="src/main/resources">
		<attributes>
			<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 excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
		<attributes>
			<attribute name="maven.pomderived" value="true"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
		<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"/>
			<attribute name="org.eclipse.jst.component.nondependency" value=""/>
		</attributes>
	</classpathentry>
	<classpathentry kind="output" path="target/classes"/>
</classpath>
如果不行  看下面 
1、原因 :使用maven建立的java專案,在建立時由於版本的原因可能會出現專案中缺少“resources”資料夾,該資料夾的作用主要是用來存放程式各種屬性配置檔案,必不可少。
2、解決方法:

使用maven建立一個java程式,目錄結構
右鍵專案名稱,選擇最後一項“properties”,:
選擇“java build path”,:
單擊“add folder”,:
選中“main”,然後點選“create new folder”,
輸入“resources”,點選完成,接著點選OK,再接著點選OK,:
到此,就成功的在專案中增加了一個“resources”資料夾
java專案,在建立時由於版本的原因可能會出現專案中缺少“resources”資料夾,該資料夾的作用主要是用來存放程式各種屬性配置檔案,必不可少。
2、解決方法:

使用maven建立一個java程式,目錄結構
右鍵專案名稱,選擇最後一項“properties”,:
選擇“java build path”,:
單擊“add folder”,:
選中“main”,然後點選“create new folder”,
輸入“resources”,點選完成,接著點選OK,再接著點選OK,:
到此,就成功的在專案中增加了一個“resources”資料夾