PDA

View Full Version : Access Control Strategy


wiggles
Feb 1st, 2005, 02:24 PM
I'm slowly moving my design with no framework to Spring. Everything seems very intuitive, except I don't know how to replace the filters that I have. I used to have all requests go through a filter along with access conrol information. The filter would check the users's permissions against this information and bounce them if needed. What's the best way to implement custom access conrol using Spring? Thanks!

huijzer
Feb 2nd, 2005, 03:38 AM
Have a look at Acegi Security (http://acegisecurity.sourceforge.net/). This is a security framwork written on top of Spring.

Arjan