gpt4 book ai didi

spring - 如何将 Mono 转换为 Mono

转载 作者:行者123 更新时间:2023-12-03 14:49:04 29 4
gpt4 key购买 nike

我正在编写一个简单的 get 方法来从 API URL 检索评论。 API 将 json 数据作为字符串返回。返回 Mono<Object>引发错误。请在下面找到 HTTP 响应。

{
"timestamp": "2019-02-05T11:25:33.510+0000",
"path": "Some URL",
"status": 500,
"error": "Internal Server Error",
"message": "Content type 'text/plain;charset=utf-8' not supported for bodyType=java.lang.Object"
}

我发现响应是一个字符串。所以回来了 Mono<String>工作正常。但我想回 Mono<MyObject>来自 API 响应。

我如何转换 Mono<String>Mono<MyObject> ?除了 How to get String from Mono<String> in reactive java,我在谷歌上找不到任何解决方案.

以下是我的服务类:
@Service
public class DealerRaterService {
WebClient client = WebClient.create();
String reviewBaseUrl = "Some URL";

public Mono<Object> getReviews(String pageId, String accessToken) {
String reviewUrl = reviewBaseUrl + pageId + "?accessToken=" + accessToken;
return client.get().uri(reviewUrl).retrieve().bodyToMono(Object.class);
}
}

编辑:添加我的 Controller 类:
@RestController
@RequestMapping("/path1")
public class DealerRaterController {

@Autowired
DealerRaterService service;

@RequestMapping("/path2")
public Mono<Object> fetchReview(@RequestParam("pageid") String pageId,
@RequestParam("accesstoken") String accessToken) throws ParseException {
return service.getReviews(pageId, accessToken);
}
}

让我知道您需要更多信息。

最佳答案

这就是我解决问题的方法。使用 map 来检索字符串并使用 ObjectMapper 类将该字符串转换为我的 POJO 类。

@Service
public class DealerRaterService {
WebClient client = WebClient.create();
String reviewBaseUrl = "some url";

public Mono<DealerReview> getReviews(String pageId, String accessToken)
throws JsonParseException, JsonMappingException, IOException {
String reviewUrl = reviewBaseUrl + pageId + "?accessToken=" + accessToken;
Mono<String> MonoOfDR = client.get().uri(reviewUrl).retrieve().bodyToMono(String.class);

return MonoOfDR.map(dealerRater -> {
try {
DealerReview object = new ObjectMapper().readValue(dealerRater, DealerReview.class);
return object;
} catch (IOException e) {
e.printStackTrace();
}
return null;
});

}

}

关于spring - 如何将 Mono<String> 转换为 Mono<MyObject>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54533771/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com