Spring 响应 HTTP 的 XD 流 POST

Spring XD stream that responds to an HTTP POST

我想在 SpringXD 中创建一个以 HTTP 源开始的流,它将使用流执行的结果作为响应的主体。

在下面的示例中,我想知道在转换器中大写后是否有任何东西可以用作接收器,以便原始 http post 的响应主体是大写案例实体。

 stream create --name httptest --definition "http | transform --expression=payload.toUpperCase() | ??" --deploy

目前我使用的时候,把log模块作为sink,返回的body是null。

谢谢, 大卫

否;目前不支持;溪流是一条单行道。

您可以使用独立的 Spring Integration, or Spring Integration Java DSL app (perhaps a Spring Boot 应用程序来提供该功能。