2008-11-13 68 views
1

我试图使用Spring的Webflow重定向到URL计算到FTP服务器,但在ExternalRedirect代码是下面几行:如何使用Spring Webflow重定向到ftp:// url?

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

有没有什么办法让春天的Webflow重定向到,说,ftp://example.com/

回答

1

您应该考虑使用这样的: http://www.tuckey.org/urlrewrite/

我把它设置与每年春天项目,我的工作。

+0

从那时起,我已经改变了工作,现在不必再使用Spring WebFlow了,所以我没有测试出你的答案,但我会接受它,因为真的,没有其他人在2。5年内说了什么。 :) 谢谢! – bwinton 2011-08-03 12:29:42