springboot2.6.4对应的gateway pom依赖
时间: 2023-12-12 14:09:18 浏览: 136
你可以使用以下的 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 版本。
springboot2.6.4对应的loadbalancer pom依赖
你可以使用以下的 pom 依赖来集成 Spring Boot 2.6.4 和 Spring Cloud LoadBalancer:
```
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
<version>1.1.7</version>
</dependency>
```
这个依赖包含了 Spring Cloud LoadBalancer 的所有必要依赖,并且适用于 Spring Boot 2.6.4 版本。需要注意的是,Spring Cloud LoadBalancer 的版本号可能会随着 Spring Boot 版本的变化而变化,因此请根据实际情况选择版本号。
阅读全文