条纹 RedirectResolution 重定向到 https url

发布于 2024-09-27 14:10:51 字数 180 浏览 4 评论 0原文

假设用户使用 https 访问 stripes action1。一旦action1处理完成,它使用RedirectResolution重定向到action2。此时,浏览器会收到一个 302 to action2,其中包含 http 而不是 https。如何使 RedirectResolution 在重定向到 action2 时使用 https?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独行侠 2024-10-04 14:10:51

您可能需要实现自己的 Resolution< /a> 为此。例如:

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

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");
    }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文