Trying to mock RestTemplate with MockRestServiceServer but body is always null Trying to mock RestTemplate with MockRestServiceServer but body is always null spring spring

Trying to mock RestTemplate with MockRestServiceServer but body is always null


I had the exact same problem:

Try adding .bufferContent() to the MockRestServiceServer

final MockRestServiceServer mockRestServiceServer = MockRestServiceServer      .bindTo(requestTemplate)      .bufferContent()      .build()