1. 程式人生 > >Eclipse建立Maven工程時出現的Java Build path 問題

Eclipse建立Maven工程時出現的Java Build path 問題

問題描述

  使用eclipse建立Maven工程時,出現如下錯誤:

Description Resource    Path    Location    Type
Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this environment.   SpringBasic     Build path  JRE System Library Problem

解決方案

  原因是,maven build 的java build path路徑未設定:
這裡寫圖片描述

這裡寫圖片描述


這裡寫圖片描述


這裡寫圖片描述


  效果圖:

      

終極解決方案

  由於maven中update project 之後,可能還是會出現上述錯誤,可在pom.xml 檔案中新增外掛:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId
>
maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>