Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create a Google App Enginge + GWT application that implements Access Control Lists (ACL) for resource management etc. Just a standard non-authenticated user/basic user/manager user/admin type thing. The user's account/user type would then determine their access to certain functionality in the web application.

The only decent example I have been able to find so far requires integrating Spring Security into the mix (Spring Security in Google App Engine/), but as the tutorial mentions that it uses Spring MVC, I wonder if this is appropriate or should I look for an MVP approach?

Are there any good books/tutorials/open source projects that can provide a clear example of how to achieve ACL in a GAE +GWT application (specifically Java based solutions)?

share|improve this question

2 Answers

Spring Security is a very solid security framework; it does not require any coupling with Spring MVC, and it should be fully compatible with GAE/GWT. I have not used it with GWT per se, but I've integrated it into a bunch of different apps, some with non-Spring MVC frameworks, others which did not even use a web MVC. It has a little bit of a learning curve but is very well-documented and proven.

share|improve this answer
Thanks. At least I know I'm on the right track. I'm just failing to find a clear example tutorial/project to get up and running. – pnairn Jul 28 '11 at 1:34
Which part are you struggling with? The examples in the page you provided should be very easily adaptable to a vanilla GAE/GWT app, with the one exception that if you don't already use Spring, you will need to first get Spring into the mix, but that's fairly easy also (plus Spring IMO is a must-have in web app environments). – jkraybill Jul 28 '11 at 2:58

This is exactly what you are looking for:

http://jpz-log.info/archives/2009/11/04/guice-it-up-or-aop-can-be-made-simple-sometimes/

I've used this as the starting point in situations similar to the one you are in. (Role based security, GWT, Appengine)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.