从服务器请求中检索Json正文内容

时间:2019-01-16 15:37:24

标签: java spring-boot spring-webflux

我正在尝试从ServerRequest检索Json主体内容,并将其用作传递给我方法的参数。我尝试使用.subscribe()并能够检索内容。但是,我将需要对其进行设置并能够在subscribe()方法之外使用。我尝试使用tobodymono()或body()。但是,它们都返回空内容。请帮忙。

我的代码示例

public Mono<ServerResponse> find(ServerRequest Sr)
{
    Sr.subscribe() //Able to get content but how to get the content outside of the subscribe method
} 

0 个答案:

没有答案