Hi,
I am migrating to 3.0 now, but could not figure out how to set my own authentication success handler.
This is how I defined the filter:
<beans:bean id="authenticationFilter"
class="org.springframework.security.web.authentica tion.UsernamePasswordAuthenticationFilter">
<beansroperty name="authenticationManager" ref="authenticationManager"/>
<beansroperty name="authenticationSuccessHandler" ref="customTargetUrlResolver"/>
<beansroperty name="filterProcessesUrl" value="/j_spring_security_check"/>
</beans:bean>
authenticationSuccessHandler refer to a subclass of SavedRequestAwareAuthenticationSuccessHandler. I was hoping that right after authentication, this will be called, but it did..... so how do I configure it so that I can have my own custom target url resolver now in 3.0 ?
thanks in advance,
canal


roperty name="authenticationManager" ref="authenticationManager"/>
