Reputation: 7374
I try find some simple security plugin from Grails
.
And first of all, i want ask you: what plugin you can recommend?
I not need super powerful plugin. Its must be simply and for small application.
Thanks.
Upvotes: 2
Views: 142
Reputation: 40851
We use Apache Shiro which is very simple to use and set up. It works by convention and supports both authentication and authorization.
Upvotes: 0
Reputation: 120278
I recommend Spring Security. It is easy to configure, and very flexible. It can handle everything from simple login, to annotated access controls on methods, to various complicated login schemes.
It does have a fairly complicated API, but there is plenty of documentation, and you can be sure others are using it.
If you just want simple login, it is really easy to set up.
More info here.
Per @robbbert suggestion, here is an alternative -- the Shiro plugin. I cannot speak to its reliability/community/expandibility.
Upvotes: 7