Month: September 2019

Springfox for 204 response

What you need to, Return ResponseEntity<Void> Set the @ResponseStatus for your rest controller’s method If you don’t do that, you will get ResponseEntity as the response class in your swagger json, and you will get both 200 and 204 as your successful response code, which is not correct because your method only returns 204, no …

Springfox for 204 response Read More »

IOS Safari showing a blank page when coming back to a React Component

Problem When you go to a react component, then go to another, and finally come back, the react component is showing blank, or half-blank. Investigation If you inspect the page with the mobile safari inspector , you can see the elements are there, but safari just refuse to show the data on the screen. In …

IOS Safari showing a blank page when coming back to a React Component Read More »