美文网首页
2019-06-27 SpringBoot环境搭建

2019-06-27 SpringBoot环境搭建

作者: constantine丶 | 来源:发表于2019-06-28 13:40 被阅读0次

jdk1.8.0_211
apache-maven-3.6.1
IntelliJ IDEA 2019.1.3 x64
springboot 2.1.6

在 apache-maven-3.6.1\conf\settings.xml 下增加

<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>

相关文章

网友评论

      本文标题:2019-06-27 SpringBoot环境搭建

      本文链接:https://www.haomeiwen.com/subject/gselcctx.html