Results 1 to 3 of 3

Thread: org.springframework.security.* or org.acegisecurity.*

  1. #1
    Join Date
    May 2009
    Location
    Rus
    Posts
    87

    Default org.springframework.security.* or org.acegisecurity.*

    There are similar classes in these packages. I just want to register user details service for authentication provider:
    Code:
    <authentication-provider user-service-ref="myUserDetailService"/>
    In Manning's book I read about acegisecurity.* packages and while reading Reference I see springframework.security.*.
    So what packages should I use to create my own UserDetailService?

  2. #2
    Join Date
    Apr 2006
    Location
    South Carolina
    Posts
    122

    Default

    ACEGI Security is no longer supported. The project has been refactored/renamed to Spring security. You should removed the ACEGI security JAR's and use the Spring Security code.

    (Spring Security 2.0 is the release that follows ACEGI Security 1.0, but the packages have all been renamed.)

  3. #3
    Join Date
    May 2009
    Location
    Rus
    Posts
    87

    Default

    Aha! thnx!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •