Spring Security and Wicket-auth-rolesPage comment added by Ruben WagnerTo provide the security context in the wicket web application (using spring-security-3.0.X) you can not omit the "springSecurityFilterChain" in the web.xml. You don't need to specify a bean if you use "springSecurityFilterChain" as filter name - Because then the default filter-chain will be used.
...
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
...
Change Notification Preferences
View Online
|
|
- [CONF] Apache Wicket > Spring Security and Wicket-auth-roles confluence
