Ignore:
Timestamp:
12/20/13 15:59:51 (10 years ago)
Author:
olhsha
Message:

following Eric's instruction in security management in Dasish: removing a separate security DB, making authentication tables the part of the main DB, keeping hashed passwords. Used spring-security configuration for hashes with BCryptPasswordEncoder as recommended.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/resources/spring-config/applicationContext-security.xml

    r4013 r4209  
    2525           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    2626           http://www.springframework.org/schema/security
    27            http://www.springframework.org/schema/security/spring-security-3.0.xsd">   
     27           http://www.springframework.org/schema/security/spring-security-3.2.xsd">   
    2828
    2929
     
    3636</http>
    3737
    38 
    3938<authentication-manager>
    4039    <authentication-provider>
    41         <jdbc-user-service data-source-ref="securityDataSource"/>
     40        <password-encoder ref="bCryptPasswordEncoder"/>
     41        <jdbc-user-service data-source-ref="dataSource"/>
    4242    </authentication-provider>
    4343</authentication-manager>
Note: See TracChangeset for help on using the changeset viewer.