【发布时间】: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