Spring Security and Wicket-auth-rolesComment edited by Ruben Wagner :Changes (1)
Full ContentTo 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. Unable to find source-code formatter for language: web.xml. Available languages are: actionscript, html, java, _javascript_, none, sql, xhtml, xml
...
<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
- [CONF] Apache Wicket > Spring Security and Wicket-auth-... confluence
- [CONF] Apache Wicket > Spring Security and Wicket-auth-... confluence
- [CONF] Apache Wicket > Spring Security and Wicket-auth-... confluence
