Spring Web Flow config for SpringFramework 3.0 or alternatives?

I would like to know, whether spring web flow supports springframework 3 release. According to the official documentation http://static.springsource.org/spring-webflow/docs/2.3.x/reference/html/ch10s02.html, spring 2.5 is used (config file), but as was mentioned stackoverflow:spring-3-spring-web-flow-2-dependencies-problem it should work with the springframework 3, so does it mean documentation is not up-to-date, the same is for spring web flow samples, where spring 2.5 is also used. So, if it supports, the right config header should be?:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:flow="http://www.springframework.org/schema/webflow-config"
       xsi:schemaLocation="
           http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans.xsd
           http://www.springframework.org/schema/webflow-config
           http://www.springframework.org/schema/webflow-config/spring-webflow-config- 2.3.xsd">

</beans>

Is it so?

And of course, question is raised: does it make sense to use spring flow for spring web mvc project? Because, as was mentioned in Spring Web Flow 3 Development Abandoned? no active development for spring web flow, and what is the available web flow support alternative for spring/spring mvc based project, in this case?


It is definately not abandoned. I have successfully used SWF 2.3 with Spring 3.1 - no problems here.

As an alternative you could try to use JSF with its page navigation support.

链接地址: http://www.djcxy.com/p/6654.html

上一篇: 面包屑在grails中

下一篇: SpringFramework 3.0的Spring Web Flow配置还是其他选择?