我按照我之前的问题Spring Cloud Stream message from/to JSON conversion configuration和配置的流进行了描述,但是,我无法使其正常工作。
我的设置如下。我有两个应用程序A
和B
. 应用程序A
使用输入通道one
,输出two
。应用程序B
使用输入two
。频道two
配置为内容类型application/json
。
应用 A. 属性。
spring.cloud.stream.bindings.input.destination=one
spring.cloud.stream.bindings.input.group=default
spring.cloud.stream.bindings.output.destination=two
spring.cloud.stream.bindings.output.content-type=application/json
监听器方法。
@ServiceActivator(inputChannel = Processor.INPUT, outputChannel = Processor.OUTPUT)
public Dto handle(byte[] payload) throws IOException {
final Dto dto = new ObjectMapper().readValue(payload, Dto.class);
logger.info("{}", dto);
dto.setId(dto.getId() + 1000);
return dto;
}
应用 B. 属性。
spring.cloud.stream.bindings.input.destination=two
spring.cloud.stream.bindings.input.group=default
spring.cloud.stream.bindings.input.content-type=application/json
监听器方法。
@ServiceActivator(inputChannel = Sink.INPUT)
public void handle(Dto dto) throws IOException {
logger.info("DTO {}", dto);
}
当我手动将带有正确 JSON 字符串的消息发送到 channelone
时,它会被正确处理并two
作为 JSON 消息发送到 channel(标题与上述问题中描述的完全相同)。之后,two
App B 在频道上接收到它并抛出异常:Method handle(java.lang.String) cannot be found
当然,当我创建这两种方法时,将 Dto 和 String 作为输入处理,它可以工作,但总是调用 String 方法并且必须自己反序列化有效负载。
我在哪里弄错了吗?如何使用这样的签名设置方法:public Dto handle(Dto incoming)
?