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 has been archived by the owner on Apr 5, 2022. It is now read-only.
Hey we are creating an exchange DELETE request with object entity as the body of the request however no body is being received by our API server side:
final HttpHeaders headers = new HttpHeaders();
restTemplate.exchange(
"/api/example",
HttpMethod.DELETE,
new HttpEntity<>(entity, headers),
Void.class);
This works ok with RestTemplate in main spring project - has this functionality been missed for android RestTemplate?
Thanks,
Stephen
The text was updated successfully, but these errors were encountered:
Hey we are creating an exchange DELETE request with object entity as the body of the request however no body is being received by our API server side:
This works ok with RestTemplate in main spring project - has this functionality been missed for android RestTemplate?
Thanks,
Stephen
The text was updated successfully, but these errors were encountered: