“Spring Boot-HelloWorld”的版本间的差异
跳到导航
跳到搜索
Jihongchang(讨论 | 贡献) (建立内容为“https://www.bilibili.com/video/BV19K4y1L7MT?p=5”的新页面) |
Jihongchang(讨论 | 贡献) |
||
第1行: | 第1行: | ||
− | https://www.bilibili.com/video/BV19K4y1L7MT?p=5 | + | === Spring Boot 2 入门 === |
+ | |||
+ | ==== 系统要求 ==== | ||
+ | Java 8 & 兼容 java 14 | ||
+ | |||
+ | Maven 3.3+ | ||
+ | |||
+ | idea 2019.12 | ||
+ | |||
+ | ==== maven 设置 ==== | ||
+ | <syntaxhighlight lang="xml"> | ||
+ | <mirrors> | ||
+ | <mirror> | ||
+ | <id>nexus-aliyun</id> | ||
+ | <mirrorOf>central</mirrorOf> | ||
+ | <name>Nexus aliyun</name> | ||
+ | <url>http://maven.aliyun.com/nexus/content/groups/public</url> | ||
+ | </mirror> | ||
+ | </mirrors> | ||
+ | |||
+ | <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> | ||
+ | </profiles> | ||
+ | </syntaxhighlight>https://www.bilibili.com/video/BV19K4y1L7MT?p=5 |
2023年1月31日 (二) 02:20的版本
Spring Boot 2 入门
系统要求
Java 8 & 兼容 java 14
Maven 3.3+
idea 2019.12
maven 设置
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<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>
</profiles>