What are the differences between exchange and retrieve methods for Micronaut HttpClient?
The return type. See HttpClient Javadoc
exchange returns the full http response
exchange
Whereas retrieve returns the body of the http response.
retrieve