【问题标题】:How do I redirect to an ftp:// url with Spring Webflow?如何使用 Spring Webflow 重定向到 ftp:// url?
【发布时间】:2026-01-15 13:30:02
【问题描述】:

我正在尝试使用 Spring WebFlow 将计算的 url 重定向到 ftp 服务器,但在 ExternalRedirect 代码中有以下几行:

} else if (location.startsWith("http://") || location.startsWith("https://")) {
    sendRedirect(location, request, response);
} else {
    sendServletRelativeRedirect(location, request, response);
}

有什么方法可以让 Spring WebFlow 重定向到,比如说,ftp://example.com/

【问题讨论】:

    标签: spring redirect spring-webflow


    【解决方案1】:

    你应该考虑使用这个: http://www.tuckey.org/urlrewrite/

    我为我从事的每个春季项目都设置了它。

    【讨论】:

    • 从那以后我换了工作,现在不必再使用 Spring WebFlow,所以我没有测试你的答案,但我会接受它,因为真的, 2.5 年来没有人说过任何话。 :) 谢谢!