關於使用maven建立java web專案時,java Resources資料夾上出現紅X的現象
阿新 • • 發佈:2019-01-06
在現實使用maven 簡歷專案中很多人可能會碰到這種情況,當我碰到這種情況的時候看到網的解決方法都很多,但是大家都講到了就是jdK版本與maven的編譯的版本不一樣所導致的但是沒有一個人的說道直接的解決方法。
下面我來說說看:
1、首先error log和markers看到你的錯誤情況,你可以跟據你的錯誤去修改。
2、開啟你的pom.xml檔案,修改下面的內容
<build>
<finalName>sktask</finalName>
<plugins>
<!-- define the project compile level -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source> //對你你的jdk版本呢
<target>1.7</target> //對你你的jdk版本呢
</configuration>
</plugin>
</plugins>
</build>
3、然後執行maven|update project即可