springboot2.6.4对应的gateway版本
时间: 2023-09-11 14:11:21 浏览: 537
Spring Boot 2.6.4 对应的 Spring Cloud Gateway 版本是 3.0.4。你可以在项目的 pom.xml 文件中添加以下依赖来使用 Spring Cloud Gateway:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
```
相关问题
springboot2.6.4对应的gateway pom依赖
你可以使用以下的 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 版本。
springboot2.6.4对应的security pom依赖
你可以使用以下的 pom 依赖来集成 Spring Boot 2.6.4 和 Spring Security:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>2.6.4</version>
</dependency>
```
这个依赖包含了 Spring Security 的所有必要依赖,并且适用于 Spring Boot 2.6.4 版本。
阅读全文