upgrade-04-05.txt 1.3 KB

12345678910111213141516171819202122232425
  1. ===============================================================================
  2. ACEGI SECURITY SYSTEM FOR SPRING - UPGRADING FROM 0.4 TO 0.5
  3. ===============================================================================
  4. The following should help most casual users of the project update their
  5. applications:
  6. - By default, AuthenticationProcessingFilter and SecurityEnforcementFilter now
  7. use Spring's WebApplicationContextUtils.getApplicationContext to load the
  8. ApplicationContext in which their respective configs may be found. Ideally,
  9. move your configuration for these filters from the separate contexts you were
  10. using before, to the main context used by your webapp. Alternately, the old
  11. mechanism of having the filter load its own specific context is still
  12. supported, but the param specifying the location of this context has been
  13. changed to match the equivalent param as used by Spring's ContextLoader class.
  14. If you do still want to use this approach, just rename your param from
  15. 'appContextLocation' to 'contextConfigLocation'.
  16. - If you're using container adapters, please refer to the reference
  17. documentation as additional JARs are now required in your container
  18. classloader.
  19. We hope you find the new features useful in your projects.
  20. $Id$