如何使用Spring Webflow重定向到ftp:// url?

时间:2008-11-13 20:44:35

标签: spring redirect spring-webflow

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

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

有没有办法让Spring WebFlow重定向到ftp://example.com/

1 个答案:

答案 0 :(得分:1)

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

我对我工作的每个春季项目进行了设置。