我是spring boot webflux的新手。我在这里遇到一个小问题“ userMono不为空”,但是这部分代码正在执行“ switchIfEmpty(Mono.just(“ hello123”))“
Mono<String> someMono = serverRequest.bodyToMono(String.class);
Mono<List<String>> listMsgMono = someMono.flatMap(json -> {
JSONObject jsonObject = Util.getJsonObjectFromString(jsonString);
String id = Util.getStringFromJSON(jsonObject, "id");
JSONArray jsonArray = Util.getJSONArrayFromJSON(jsonObject, "array");
int length = jsonArray.length();
for (int index = 0; index < length; index++) {
String email = Util.getStringFromJSONArray(jsonArray, index);
LOGGER.debug("email :" + email);
Mono<User> userMono = repository.findByEmail(email);
//inner mono is not emmitting data
userMono.flatMap(user -> {
otherRepository.findById(id).flatMap(l -> {
return Mono.just("all welcome");
}).switchIfEmpty(someRepository
.findById(id).flatMap(r ->{
return Mono.just("all done");
}).switchIfEmpty((Mono.just("hello0000"));
return Mono.just("successfull");
})
.switchIfEmpty(Mono.just("hello123"));
}
return Mono.just("hello");
});
答案 0 :(得分:1)
他的问题是您在实现过程中没有链接运营商。每个运算符调用都会返回一个新的Publisher实例,您需要将其重新分配给一个变量,否则管道中将不考虑该运算符。