org.springframework.cloud.client.loadbalancer.LoadBalancerProperties 是什么版本的jar包
时间: 2023-09-22 19:09:11 浏览: 179
spring-cloud-loadbalancer-3.0.4.jar中文-英文对照文档.zip
这个类 `org.springframework.cloud.client.loadbalancer.LoadBalancerProperties` 是 Spring Cloud Ribbon 中的一个类,用于配置负载均衡的属性。它的版本取决于你使用的 Spring Cloud 版本。
你可以在 Maven 或 Gradle 的项目配置文件中指定 Spring Cloud 的版本,然后自动下载相应版本的 jar 包。例如,如果你使用的是 Spring Cloud Hoxton 版本,可以使用以下 Maven 依赖来获取 `LoadBalancerProperties` 类所在的 jar 包:
```xml
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
<version>2.2.2.RELEASE</version>
</dependency>
```
请根据你实际使用的 Spring Cloud 版本来选择对应的 jar 包版本。
阅读全文