I move my application to use spring-boot 2.0.0.RELEASE, and logic with WebClient stop working.
String resp = WebClient.create("https://stackoverflow.com/questions/7506392/how-to-create-android-facebook-key-hash").get().retrieve()
.bodyToMono(String.class)
.block();
log.info(resp);
When this code execute application just hold
Important thing with 2.0.0.RC2 its working
What it can be ? thanks