RichFacesAjaxHandler 在哪里?

Where is RichFacesAjaxHandler?

我正在为 solve a problem I'm having in this question 制作一个小示例。在我的一项测试中,我收到了来自 Tomcat:

的消息
nested exception is java.lang.ClassNotFoundException: org.springframework.faces.richfaces.RichFacesAjaxHandler

这来自这个配置:

<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerAdapter">
    <property name="flowExecutor" ref="flowExecutor" />
    <property name="ajaxHandler">
        <bean class="org.springframework.faces.richfaces.RichFacesAjaxHandler" />
    </property>
</bean>

spring-faces 通过 Maven 安装,版本 2.4.4.RELEASE(与 spring-webflow 相同)。检查 jar 以检查包,我得到:

奇怪的是,1Maven says that the file is there。现在我的问题来了:

RichFacesAjaxHandler在哪里?如果不包含在 spring-faces 中,哪个包包含 class?

显然,Spring 在 Spring Web Flow 的 2.4 版中删除了对 RichFaces 的支持。我将 spring-faces 包降级到版本 2.3.4.RELEASE 以使应用程序再次运行: