It turns out it's really easy. The only change for 3.4.7 is this:
Instead of modifying "handlerMappingB" bean, you modify this one:
<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerMapping"
p:flowRegistry-ref="flowRegistry" p:order="2">
<property name="interceptors">
<ref local="localeChangeInterceptor" />
</property>
</bean>
(line 133 in the default cas-servlet.xml)
to
<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerMapping"
p:flowRegistry-ref="flowRegistry" p:order="2">
<property name="interceptors">
<list>
<ref local="localeChangeInterceptor" />
<ref bean="throttleInterceptor" />
</list>
</property>
</bean>
You still need spring-configuration/throttleInterceptorTrigger.xml
Let me know how this works for you. I'll modify the wiki if it works out.
Thanks,
Eric
On Tue, May 10, 2011 at 10:58 AM, ejc <[email protected]> wrote:
> Unfortunately I'm not at work today, but maybe I'll have some time
> this evening or tomorrow to look at what I did. It wasn't difficult,
> but I don't want to lead you astray, either :-)
>
> Thanks,
> Eric
>
> On Tuesday, May 10, 2011, Neit <[email protected]> wrote:
>> I use 3.4.7
>>
>> Le 10/05/2011 17:02, ejc a écrit :
>>
>> are you using? I just got this working with 3.4.7
>> and that page is a good r
>>
>>
>> --
>> You are currently subscribed to [email protected] as:
>> [email protected]
>> To unsubscribe, change settings or access archives, see
>> http://www.ja-sig.org/wiki/display/JSG/cas-user
>>
>
--
You are currently subscribed to [email protected] as:
[email protected]
To unsubscribe, change settings or access archives, see
http://www.ja-sig.org/wiki/display/JSG/cas-user