web.xml
context-webmvc.xmlCode:<filter> <display-name>RichFaces Filter</display-name> <filter-name>richfaces</filter-name> <filter-class>org.ajax4jsf.Filter</filter-class> </filter> <filter-mapping> <filter-name>richfaces</filter-name> <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> <dispatcher>INCLUDE</dispatcher> </filter-mapping>
if you have this framework jQuery --><bean id="flowController" class="org.springframework.webflow.mvc.servlet.Flo wController">
<property name="flowExecutor" ref="flowExecutor" />
<property name="ajaxHandler">
<bean class="org.springframework.faces.richfaces.RichFac esAjaxHandler"/> </property>
</bean>
put
<script type="text/javascript">
var $j = jQuery.noConflict();
// Code that uses other library's $ can follow here.
</script>
The libraries:
richfaces-api-3.3.2.SR1.jar
richfaces-impl-3.3.2.SR1.jar
richfaces-ui-3.3.2.SR1.jar
----------------------------
spring-webmvc-2.5.5.jar
spring-2.5.5.jar
all "Spring security" .jar version 2.0.4


Reply With Quote