in ss2.04, i write a AuthenticationProvider,how i config it !below is the sample
Code:<custom-authentication-provider > </custom-authentication-provider> <b:bean id="forumAuthenticationProvider" class="org.springframework.security.providers.dao.DaoAuthenticationProvider"> <security:custom-authentication-provider/> <b:property name="passwordEncoder" value="md5"></b:property> <b:property name="userCache" ref="userCache"></b:property> <b:property name="userDetailsService" ref="myUserService"></b:property> </b:bean>



