私のサービスコールは画像を返します。
png 画像を返し、ヘッダーに image/jpeg の content-type があり、同じページで画像を開きます。このイメージをディスクに保存するオプションをユーザーに提供したいと考えています。
Content-Dispositionはインラインである可能性があり、content-dispositionを添付ファイルとして指定します
response.setContentType("image/jpeg");
response.setHeader("Content-Disposition", "attachment; filename=" + imageName + ".jpg");
Content-Disposition
サーバーの応答にヘッダーが必要です