Skip to content
Advertisement

How to send a body with HTTP DELETE when using WebFlux?

I want to access an HTTP API which provides a DELETE endpoint. This particular endpoint expects a list of items (which I want to delete) as JSON body.

Now, my problem is, I’m using Spring Webflux. But its WebClient doesn’t give me the possibility, to send a body with a DELETE request. For a POST, I’d do this:

JavaScript

But for DELETE, I get a RequestHeadersSpec which doesn’t give me the option to provide a body(...):

JavaScript

So, what’s the way to achieve this with Spring Webflux on the client side?

Advertisement

Answer

You can use webClient’s method() operator. Simple example,

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement