修改idea中JDK的版本
阿新 • • 發佈:2018-12-28
修改idea中jdk版本配置:
- File->Project Structure:
->Project
->Modules
->SDKs
2. File-Settings:
->Importing
->Runner
【注意】如果以前在Maven的setting檔案中配置指定了JDK版本,則還需修改setting檔案的如下引數設定:
<profile> <id>jdk</id> <activation> <activeByDefault>true</activeByDefault> <jdk>10</jdk> </activation> <properties> <maven.compiler.source>10</maven.compiler.source> <maven.compiler.target>10</maven.compiler.target> <maven.compiler.compilerVersion>10</maven.compiler.compilerVersion> </properties> </profile>