springboot2.6.4对应的gateway pom依赖
时间: 2023-12-12 17:09:18 浏览: 138
基于SpringBoot2.6.4的电商系统源码.zip
5星 · 资源好评率100%
你可以使用以下的 pom 依赖来集成 Spring Boot 2.6.4 和 Spring Cloud Gateway:
```
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
<version>3.1.4</version>
</dependency>
```
这个依赖包含了 Spring Cloud Gateway 的所有必要依赖,并且适用于 Spring Boot 2.6.4 版本。
阅读全文