1. 程式人生 > >SpringBoot總結(三)--編寫HelloWorld的環境配置

SpringBoot總結(三)--編寫HelloWorld的環境配置

本文內容來自尚矽谷

1所需工具的版本

jdk1.8:Spring Boot 推薦jdk1.7及以上; 我這裡使用的是 java version "1.8.0_112"

maven3.x:maven 3.3以上版本;           我這裡使用的是Apache Maven 3.3.9

IntelliJIDEA2017:                                   我這裡使用的是  IntelliJ IDEA 2017.2.2 x64、STS

SpringBoot 1.5.9.RELEASE:                 我這裡使用的是 1.5.9;

2MAVEN設定;

給maven 的settings.xml配置檔案的profiles標籤新增

<profile>
  <id>jdk-1.8</id>
  <activation>
    <activeByDefault>true</activeByDefault>
    <jdk>1.8</jdk>
  </activation>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  </properties>
</profile>

3IDEA設定

    整合maven進來;