Correct usage of LoadbalanceRSocketClient with Spring's RSocketRequester
问题 I'm trying to understand the correct configuration and usage pattern of LoadbalanceRSocketClient in a context of SpringBoot application ( RSocketRequester ). I have two RSocket server backends (SpringBoot, RSocket messaging) running and configuring the RSocketRequester on a client side like this: List<LoadbalanceTarget> servers = new ArrayList<>(); for (String url: backendUrls) { HttpClient httpClient = HttpClient.create() .baseUrl(url) .secure(ssl -> ssl.sslContext(SslContextBuilder