Search code examples
swagger-ui

Swagger doesn't show response body


My Swagger endpoint always shows "no content" in the Response Body. Al tough the server sends a meaningful response text back.

swagger UI

RequestMapping

DevTools Browser


Solution

  • The reason for not showing the Response Body is the following parameter in @RequestMapping : produces = "application/json"

    I removed "produces = "application/json" and the response body is shown correctly