• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

To authors: Security Frameworks

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ramesh, Hi Christopher,

I'm currently developing a small application using Spring and the Acegi Security Framework.
What do you think about such frameworks and how do they fit to the patterns described in your book?

Thanks a lot!
Thomas
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thomas,
I am currently leading a large development project using AJAX and Spring. Spring is a bit different from many frameworks in that it implements dependency injection. The fundamentals still apply and most of the patterns in the book are still relevant. Take a look at the Audit Interceptor pattern in Chapter 10. It implies a filtering interceptor approach that fits nicely into the Spring framework. You can then take the other relevant business tier patterns and implement them using similiar filtering strategies. Dynamic Service Management is practically already implemented for you if you are using XDoclet with Spring. The Policy Delegate pattern could also be implemented as a filter to enforce access control to your business objects.
Hope this helps.
reply
    Bookmark Topic Watch Topic
  • New Topic