Everyone I was wondering if anyone knows of any Java libraries that are similar to or offer the same functionality as CanCan (Ruby on Rails). Would love to know your experiences with them if any.

CanCan is an authorization library for Ruby on Rails which restricts what resources a given user is allowed to access. All permissions are defined in a single location (the Ability class) and not duplicated across controllers, views, and database queries.

Bonus points if it works on the play framework (http://playframework.org)

link|improve this question

62% accept rate
feedback

2 Answers

Here is one Example https://github.com/eltados/canny of something very similar? Has anyone got any experience using this?

link|improve this answer
feedback

Does Spring Security not provide similar functionality? See http://static.springsource.org/spring-security/site/docs/3.0.x/reference/el-access.html#el-pre-post-annotations for examples of annotation-based authorization specifications...

link|improve this answer
Thanks Joseph, I will look into this as an option – Mark Ellul Jun 15 '11 at 10:58
feedback

Your Answer

 
or
required, but never shown

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