1. 程式人生 > >怎麼設定eclipse中jdk版本

怎麼設定eclipse中jdk版本

點選window->preferences

對話方塊中選擇java->complier


maven 中jre報錯

點選window->preferences

複製路徑找到settings.xml檔案

D:\soft\apache-maven-3.5.2\conf\settings.xml

這裡可以使用阿里的jar包映象倉庫 速度塊

 <mirrors>
    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name
>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> //配置maven工程jdk版
<profile>        <id>jdk1.7</id>    
    <activation>            <activeByDefault>true</activeByDefault>             <jdk>1.7</jdk>   
    </activation>         <properties>            <maven.compiler.source>1.7</maven.compiler.source>             <maven.compiler.target>1.7</maven.compiler.target>             <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>        </properties>    </profile>