posted 11 years ago
hi,
i am tryign to migrate from spring security 2.x t0 3.x. please suggest any guide for the same.
I am getting nullpointerException in org.springframework.security.web.FilterChainProxy. filterChainMap is coming null in FilterChainProxy.getFilters()
filterchain proxy has been defined as this
<bean id="filterChainProxy" class="org.springframework.security.web.FilterChainProxy">
<security:filter-chain-map path-type="ant">
<security:filter-chain pattern="/login.jsp" filters="none"/>
<security:filter-chain pattern="/css/**" filters="none"/>
<security:filter-chain pattern="/images/**" filters="none"/>
<security:filter-chain pattern="/*.jsp*/**" filters="httpSessionContextIntegrationFilter,logoutFilter,formAuthenticationProcessingFilter,exceptionTranslationFilter,filterSecurityInterceptor,userBeanFilter"/>
<security:filter-chain pattern="/**" filters="httpSessionContextIntegrationFilter,logoutFilter,formAuthenticationProcessingFilter,exceptionTranslationFilter,filterSecurityInterceptor,userBeanFilter"/>
</security:filter-chain-map>
</bean>
Please help me .