mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 14:52:24 +00:00
Updated app. context file to match new constructor-injection changes.
This commit is contained in:
parent
1549ec55b1
commit
8585ddf48b
@ -16,15 +16,15 @@
|
|||||||
|
|
||||||
<!-- if you wish to use channel security, add "channelProcessingFilter," in front
|
<!-- if you wish to use channel security, add "channelProcessingFilter," in front
|
||||||
of "httpSessionContextIntegrationFilter" in the list below -->
|
of "httpSessionContextIntegrationFilter" in the list below -->
|
||||||
<bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy">
|
<bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy">
|
||||||
<property name="filterInvocationDefinitionSource">
|
<property name="filterInvocationDefinitionSource">
|
||||||
<value>
|
<value>
|
||||||
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
|
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
|
||||||
PATTERN_TYPE_APACHE_ANT
|
PATTERN_TYPE_APACHE_ANT
|
||||||
/**=httpSessionContextIntegrationFilter,authenticationProcessingFilter,securityEnforcementFilter
|
/**=httpSessionContextIntegrationFilter,authenticationProcessingFilter,securityEnforcementFilter
|
||||||
</value>
|
</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- ======================== AUTHENTICATION ======================= -->
|
<!-- ======================== AUTHENTICATION ======================= -->
|
||||||
|
|
||||||
@ -37,25 +37,25 @@
|
|||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="initialDirContextFactory" class="org.acegisecurity.providers.ldap.DefaultInitialDirContextFactory">
|
<bean id="initialDirContextFactory" class="org.acegisecurity.providers.ldap.DefaultInitialDirContextFactory">
|
||||||
|
<constructor-arg value="ldap://monkeymachine:389/dc=acegisecurity,dc=org"/>
|
||||||
<property name="managerDn"><value>cn=manager,dc=acegisecurity,dc=org</value></property>
|
<property name="managerDn"><value>cn=manager,dc=acegisecurity,dc=org</value></property>
|
||||||
<property name="managerPassword"><value>acegisecurity</value></property>
|
<property name="managerPassword"><value>acegisecurity</value></property>
|
||||||
<property name="url"><value>ldap://monkeymachine:389/dc=acegisecurity,dc=org</value></property>
|
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="ldapAuthenticationProvider" class="org.acegisecurity.providers.ldap.LdapAuthenticationProvider">
|
<bean id="ldapAuthenticationProvider" class="org.acegisecurity.providers.ldap.LdapAuthenticationProvider">
|
||||||
<property name="authenticator"><ref local="ldapAuthenticator"/></property>
|
<constructor-arg>
|
||||||
<property name="authoritiesPopulator"><ref local="authoritiesPopulator"/></property>
|
<bean class="org.acegisecurity.providers.ldap.authenticator.BindAuthenticator">
|
||||||
</bean>
|
<constructor-arg><ref local="initialDirContextFactory"/></constructor-arg>
|
||||||
|
<property name="userDnPatterns"><list><value>uid={0},ou=people</value></list></property>
|
||||||
<bean id="authoritiesPopulator" class="org.acegisecurity.providers.ldap.populator.DefaultLdapAuthoritiesPopulator">
|
</bean>
|
||||||
<property name="initialDirContextFactory"><ref local="initialDirContextFactory"/></property>
|
</constructor-arg>
|
||||||
<property name="groupSearchBase"><value>ou=groups</value></property>
|
<constructor-arg>
|
||||||
<property name="groupRoleAttribute"><value>ou</value></property>
|
<bean class="org.acegisecurity.providers.ldap.populator.DefaultLdapAuthoritiesPopulator">
|
||||||
</bean>
|
<constructor-arg><ref local="initialDirContextFactory"/></constructor-arg>
|
||||||
|
<constructor-arg><value>ou=groups</value></constructor-arg>
|
||||||
<bean id="ldapAuthenticator" class="org.acegisecurity.providers.ldap.authenticator.BindAuthenticator">
|
<property name="groupRoleAttribute"><value>ou</value></property>
|
||||||
<property name="initialDirContextFactory"><ref local="initialDirContextFactory"/></property>
|
</bean>
|
||||||
<property name="userDnPattern"><value>uid={0},ou=people</value></property>
|
</constructor-arg>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- Automatically receives AuthenticationEvent messages -->
|
<!-- Automatically receives AuthenticationEvent messages -->
|
||||||
@ -95,17 +95,17 @@
|
|||||||
<!-- Note the order that entries are placed against the objectDefinitionSource is critical.
|
<!-- Note the order that entries are placed against the objectDefinitionSource is critical.
|
||||||
The FilterSecurityInterceptor will work from the top of the list down to the FIRST pattern that matches the request URL.
|
The FilterSecurityInterceptor will work from the top of the list down to the FIRST pattern that matches the request URL.
|
||||||
Accordingly, you should place MOST SPECIFIC (ie a/b/c/d.*) expressions first, with LEAST SPECIFIC (ie a/.*) expressions last -->
|
Accordingly, you should place MOST SPECIFIC (ie a/b/c/d.*) expressions first, with LEAST SPECIFIC (ie a/.*) expressions last -->
|
||||||
<bean id="filterInvocationInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor">
|
<bean id="filterInvocationInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor">
|
||||||
<property name="authenticationManager"><ref local="authenticationManager"/></property>
|
<property name="authenticationManager"><ref local="authenticationManager"/></property>
|
||||||
<property name="accessDecisionManager"><ref local="httpRequestAccessDecisionManager"/></property>
|
<property name="accessDecisionManager"><ref local="httpRequestAccessDecisionManager"/></property>
|
||||||
<property name="objectDefinitionSource">
|
<property name="objectDefinitionSource">
|
||||||
<value>
|
<value>
|
||||||
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
|
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
|
||||||
\A/secure/super.*\Z=ROLE_WE_DONT_HAVE
|
\A/secure/super.*\Z=ROLE_WE_DONT_HAVE
|
||||||
\A/secure/.*\Z=ROLE_SUPERVISOR,ROLE_TELLER
|
\A/secure/.*\Z=ROLE_SUPERVISOR,ROLE_TELLER
|
||||||
</value>
|
</value>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<!-- BASIC Regular Expression Syntax (for beginners):
|
<!-- BASIC Regular Expression Syntax (for beginners):
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user