Skip to content

Tag: project-reactor

How to extract string from Mono in reactor core

I have a Mono<String> object in reactor. How can I get a string value from this object? I know I can do something like below : For Mono<String> userName, I can do, But this will directly print the value. I want to store this string value into another variable so that I can pass that variable aroun…