I\'d like to open Blob object in a browser window.
This code works everywhere but iOS Chrome (and IE of course but I can solve IE). The window is not redirected to
I fixed it by changing content-type from application/json to application/octet-stream. My xlsx file was downloaded as json.
@PostMapping(value = "/export", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)