filterChainProxy « Security « Spring Q&A





1. Error creating bean with name '_filterChainProxy': Initialization of bean failed; nested exception is java.lang.NullPointerException    stackoverflow.com

applicationContext.xml

<bean id="defaultEntryPoint" class="com.spsetia.companyapp.company.services.CustomAuthenticationEntryPoint">
    <property name="securityConfiguration" ref="securityConfiguration" />
    <!-- Default filter chain proxy -->
    <property name="proxy" ref="_filterChainProxy" />
</bean>
inside web.xml
<context-param>
    <param-name>contextConfigLocation</param-name>
 ...

2. Enquiries: acegi's FilterToBeanProxy & FilterChainProxy    forum.springsource.org

Pls refer to the 2 fragments below, the A) and B). - according to "filterChainProxy" in B), may i know is id="filterChainProxy" is called from where, which class??? A) web.xml ...

3. FilterChainProxy Authentication    forum.springsource.org

FilterChainProxy Authentication hello, I'm practice using the FilterChainProxy described in springsecurity module document(The document is not very clear and it doesnt include any examples) in that i want to customize things ...