Spring Web Flow が springframework 3 リリースをサポートしているかどうかを知りたいです。公式ドキュメントhttp://static.springsource.org/spring-webflow/docs/2.3.x/reference/html/ch10s02.htmlによると、Spring 2.5が使用されています(構成ファイル)が、前述のようにstackoverflow:spring- 3-spring-web-flow-2-dependencies-problem springframework 3 で動作するはずなので、ドキュメントが最新ではないことを意味しますか? 同じことが、Spring 2.5 も使用されている Spring Web Flow サンプルの場合です。したがって、サポートしている場合、正しい構成ヘッダーは次のようになります。
<?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>
そうですか?
そしてもちろん、疑問が生じます:Spring Web MVC プロジェクトに Spring Flow を使用することは理にかなっていますか? なぜなら、Spring Web Flow 3 Development Abandoned で述べたように? この場合、Spring Web Flow のアクティブな開発はありません。この場合、Spring/Spring MVC ベースのプロジェクトで利用可能な Web Flow サポートの代替手段は何ですか?