Spring Boot 2.2.0 syncBody deprecated

Viewed 3110

In ServerResponse, syncBody has been deprecated.

/** @deprecated */
@Deprecated
Mono<ServerResponse> syncBody(Object var1);

What should I do to replace this ?

1 Answers

If found the answer, at spring doc

We should use bodyValue in ServerResponse

Related