Third time it's a charm
Migration from Acegi to Spring Security
Once upon a time there was Acegi...moving forward to OSGi ready spring-security is as easy as:
- Add Spring-Security and Spring libraries to your Eclipse target platform
- Delete the Acegi libraries and add entries in the OSGi bundle
MANIFEST.MF - Delete the Spring libraries and add entries in the OSGi bundle
MANIFEST.MF - Run an Eclipse organize imports
CTRL+SHIFT+O - Replace
org.acegiin Spring configuration files withorg.springframework.security
Require-Bundle:
org.springframework.context,
org.springframework.core,
org.springframework.beans,
org.springframework.context,
org.springframework.context.support,
org.springframework.security,
org.springframework.security.taglibs,
org.springframework.web,
org.springframework.web.servlet,
org.springframework.transaction
