在nginx里增加
1 | add_header X-Content-Type-Options nosniff; |
来处理安全问题时,发现网站有些图片无法在部分ie下正常访问。
通过排查发现,
有些ie对于通过io方式形成的图片,无法正常显示。原因:部分ie在解析页面上的图片时,若不指定页面的Content-Type,则不会显示。
解决方案:在图片对外输出的outputStream时,增加
1 | if("jpg".equalsIgnoreCase(attachmentBean.getAttachextname()) || "jpeg".equalsIgnoreCase(attachmentBean.getAttachextname())){ |