SpringCloud入门学习(SpringCloud整合Gateway实现网关服务)
本篇将在 上一篇 的基础上,介绍SpringCloud整合Gateway实现服务转发。
- 新建一个moudle 名为gateway
pom依赖如下,注意不要添加 spring-boot-starter-web
否则会启动失败
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope&