Structs2 Reponse rediret 使用https
问题:
Structs2 action中的redirect只支持Http,当应用部署在Https环境下时。会报错:
Mixed Content: The page at ‘https://managertest.efun.com/userlogin.mainWindow.shtml‘ was loaded over HTTPS, but requested an insecure script ‘http://manager.efun.com/js/upload.js‘. This request has been blocked; the content must be served over HTTPS.
1 | <action name="serviceManagerAction_*" class="serviceManagerAction" method="{1}"> |
解决过程如下:
查询解决方案,可以使用struts2-ssl-plugin插件,使用说明 于是按照文档部署,测试时发现服务器不断重定向请求,问题处理失败。日志如下:
[2017-01-16 17:09:34.326] {http-192.168.10.39:8040-1$1934196892} Going to SSL mode, redirecting to https://managertest.efun.com:443/userlogin.mainWindow.shtml
之后发现服务器中使用https是通过ngnix根据域名的规则将所有请求转为https的。重定向的问题可能和这个有关。但是具体原因不清楚。 既然是通过ngnix来转https的。那么考虑也通过Ngnix将应用的Response的redirect也转换为Htpps来解决问题
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Vioao's Blog!