Spring Boot RestTemplate post without response type
You can use postForLocation
instead of postForEntity
.
restTemplate.postForLocation(postUrl, request)
You can use postForLocation
instead of postForEntity
.
restTemplate.postForLocation(postUrl, request)