1.2 Spring Cloud 和 Spring Boot的版本选择
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.SR4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.8.RELEASE</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
1.3 Spring Cloud 微服务开发所涉及的中间件
- zookeeper
- Redis
- Eureka
- Spring Cloud Config
- Zuul
- Nginx/OpenResty
1.4 Spring Cloud微服务开发和自验证环境
1.5 crazy-springcloud微服务开发脚手架
![image.png](/uploads/projects/lose_control@ty3x94/5fbecc269239b13a3b2d81f3c2232692.png)
![image.png](/uploads/projects/lose_control@ty3x94/82e308177fe4f71ab57dcb325cf893c8.png)
1.6 以秒杀作为Spring Cloud + Nginx的实战案例