2016-11-23 82 views
0

我正在爲solve a problem I'm having in this question製作一個小例子。在我的測試之一,我不得不從Tomcat這樣的信息:RichFacesAjaxHandler在哪裏?

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)。檢查罐子檢查包,我得到:

Spring-Faces

奇怪的是,1Maven says that the file is there。現在來我的問題:

RichFacesAjaxHandler哪裏?如果不包含在spring-faces中,哪個包含類?

回答

0

顯然,Spring刪除了Spring Web Flow 2.4版中的RichFaces支持。我降級spring-faces2.3.4.RELEASE版本,以獲得該應用程序再次合作:

RichFacesAjazHandler