It's possible return a Mono<Object> with statusCode 204 (NO_CONTENT)?
I need that, for example postman show something like this:

If using a Controller, this should do (replace path, method, etc as needed):
@GetMapping(value = "/no-content")
@ResponseStatus(HttpStatus.NO_CONTENT)
@ResponseBody
public Mono<Object> noContentMethod()
{
// ... processing here ...
return Mono.empty();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With