一、准备工作
- jdk1.8
- apache maven 3.3.9
- ide : eclipse | idea
- spring官网:https://spring.io/
二、创建基础web项目
1. maven配置
编写M2_HOME/conf/setting.xml
1. 指定本地maven仓库
<localRepository>D:\APP\repository</localRepository>
2. 配置远程仓库镜像(以阿里云为例)
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
3. 配置全局jdk版本
<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>
2.创建maven项目、配置pom.xml为web基础项目
1. web项目基础依赖
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.7.RELEASE</version>
<relativePath/> <!-- l