• 首先创建一个Spring项目(当然你也可以用maven创建看个人习惯)

Spring Initializr

  • 然后引入相应的依赖,根据SpringCloud官网搭配SpringCloud和SpringBoot相应版本
1
2
3
4
5
6
7
8
<!-- springboot 2.6.11 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.6.11</version>
<type>pom</type>
<scope>import</scope>
</dependency>
1
2
3
4
5
6
7
8
<!-- spring cloud 2021.0.4 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
  • 最后再创建对应的模块Module

新建Module