Changes between Version 2 and Version 3 of proposals/SpringSecurity
- Timestamp:
- 09/03/12 02:19:14 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
proposals/SpringSecurity
v2 v3 14 14 * SSO configuration (CAS) 15 15 * improve LDAP support 16 * import user privileges (support more than one group, define profile mapping) 16 17 * support more than one authentication provider 18 * when accessing a protected page, user is moved to a login page and will be redirected to the protected resource (instead of ServiceNotAllowed exception #313) 17 19 * ... and keep local user database and shibboleth support. 18 20 … … 56 58 * Local database 57 59 * LDAP 60 * LDAP+Local database 58 61 * CAS+LDAP 59 62 * CAS+local database 63 64 The main configuration to activate authentication mechanism is config-security.xml where import could be activated: 65 {{{ 66 <import resource="config-security-core.xml"/> 67 <import resource="config-security-mapping.xml"/> 68 <import resource="config-security-ldap.xml"/> 69 <import resource="config-security-cas.xml"/> 70 <import resource="config-security-cas-ldap.xml"/> 71 <!-- <import resource="config-security-cas-database.xml"/> --> 72 }}} 73 Then LDAP, CAS configuration (eg. LDAP url, CAS URL, ...) is made in config-security.properties. 60 74 61 75