Changes between Version 2 and Version 3 of proposals/SpringSecurity


Ignore:
Timestamp:
Sep 3, 2012, 2:19:14 AM (12 years ago)
Author:
fxp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • proposals/SpringSecurity

    v2 v3  
    1414 * SSO configuration (CAS)
    1515 * improve LDAP support
     16  * import user privileges (support more than one group, define profile mapping)
    1617 * 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)
    1719 * ... and keep local user database and shibboleth support.
    1820
     
    5658  * Local database
    5759  * LDAP
     60  * LDAP+Local database
    5861  * CAS+LDAP
    5962  * CAS+local database
     63
     64The 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}}}
     73Then LDAP, CAS configuration (eg. LDAP url, CAS URL, ...) is made in config-security.properties.
    6074
    6175