stripes RedirectResolution redirecting to https url

南楼画角 提交于 2019-12-23 13:39:11

问题


Lets say the user access a stripes action1 using https. Once action1 processing is complete, it uses RedirectResolution to redirect to action2. At this point, the browser receives a 302 to to action2 with http and not https. How will I make RedirectResolution to use https while redirecting to action2?


回答1:


You may need to implement you're own Resolution for this. For example:

return new Resolution() {
    public void execute(HttpServletRequest request, HttpServletResponse response) {
        response.sendRedirect("https://example.com/target.action");
    }
};


来源:https://stackoverflow.com/questions/3931907/stripes-redirectresolution-redirecting-to-https-url

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!