リボンが現在メンテナンス モードになっているため、リボンから Spring Cloud LoadBalancer に移行しようとしています。デフォルトの spring-boot 2.4.2 バージョンを使用して、Spring 初期化でリボン依存関係を追加できません。私は現在 OpenFeign を使用しており、デフォルトの RoundRobin Load Balancer 構成を Random Rule に変更しようとするテストを行っています。これは私が持っているものです
リボンを使用する場合、デフォルトの構成を変更する必要がありました
@Configuration
public class RibbonConfiguration {
@Bean
public IRule loadBalancingRule() {
// return new RoundRobinRule();
return new RandomRule();
}
}
クライアントにアノテーション @RibbonClient を追加します (MainApplication クラスに追加しても機能します)。
@FeignClient("first-service")
@RibbonClient(name = "first-service", configuration = RibbonConfiguration.class)
public interface HelloClient {
@GetMapping("/hello")
String hello();
}
しかし、spring-cloud-loadbalancer を使用して機能させることはできません。spring-cloud-starter-openfeign 依存関係にデフォルトで含まれていることを知っているので、私の pom は次のようになります
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.demo</groupId>
<artifactId>edge-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>edge-service</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<spring-cloud.version>2020.0.1</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
FeignClients をこのようにする (リボン注釈なし)
@FeignClient("first-service")
public interface HelloClient {
@GetMapping("/hello")
String hello();
}
@FeignClient("second-service")
public interface WorldClient {
@GetMapping("/world")
String world();
}
そして、私のRestControllerはこのように
@RestController
public class HelloWorldController {
@Autowired
private HelloClient helloClient;
@Autowired
private WorldClient worldClient;
private Logger logger = LoggerFactory.getLogger(this.getClass());
@GetMapping("/hello-world")
public String helloWorld() {
logger.info("Calling the clients");
return helloClient.hello() + " - " + worldClient.world();
}
}
他に何もしなくても、ロード バランシングが機能しているように見えます (実行中の hello サービスの 2 つのインスタンスがまだ機能しており、代替を呼び出しています)。違いをテストします。FeignConfiguration クラスで何かを変更する必要があると思いますが、検索しても成功しませんでした。
リボンを取り除き、問題なく Spring Cloud LoadBalancer を使い始めることができるように、私を助けてくれることを願っています! :C