You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2023. It is now read-only.
Add the Reactive return type for RSocket like following:
@MessageMapping("request-response")
public Mono<String> requestResponse(String name) {
return Mono.just("Hello "+name);
}
Start the RSocket server, make a request, and exception stacktrace thrown like following:
org.springframework.messaging.MessagingException: No encoder for reactor.core.publisher.Mono<java.lang.String>, current value type is class reactor.core.publisher.MonoJust