1

我有简单的 Spring boot RSocket 服务

    @MessageMapping("msend")
    public Flux<String> msend(String message) {
        log.info("msend channel publish " + message);
        return Flux.just(message, " "+System.currentTimeMillis());
    }

连接2个Spring服务很容易,但是我的客户端应用程序没有spring,我的客户端应该在RSocket java中

我很难理解如何向该特定通道发送(路由,如 Spring RsocketRequester)消息。

客户端代码应该是:

 Mono<RSocket> rsocket = RSocketConnector.create()               
            .metadataMimeType(WellKnownMimeType.MESSAGE_RSOCKET_COMPOSITE_METADATA.getString())               
            .connect(TcpClientTransport.create(2050));


 ///real path "http://gateway:2022/producer/toProducerRsocket", 2050)
 ///toProducerRsocket redirect to producer/rsocket

是否可以订阅 Spring 频道?

4

1 回答 1

2

这对于定义元数据类型看起来是正确的。但是您需要为请求流设置它。通道在这里听起来不正确,因为您只有一个输入值消息。

https://stackoverflow.com/a/62776146/1542667

CompositeByteBuf metadata = ByteBufAllocator.DEFAULT.compositeBuffer();
RoutingMetadata routingMetadata = TaggingMetadataCodec.createRoutingMetadata(ByteBufAllocator.DEFAULT, List.of("/route"));
CompositeMetadataCodec.encodeAndAddMetadata(metadata,
        ByteBufAllocator.DEFAULT,
        WellKnownMimeType.MESSAGE_RSOCKET_ROUTING,
        routingMetadata.getContent());
于 2021-01-18T18:56:25.007 回答