Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

User management plugin/framework for Grails?

Is there a user-management plugin for grails?

Nearly every website requires things like:

  • Users Login/Authentication
  • Registration (w/ email verification)
  • Forgotten email reminders User
  • User Profiles

Are there any Grails plugins/frameworks/whatever that provide things like this as a base to build upon?

I know how to build these things, so I'm not looking for that type of answer. It just seems silly for every person out there to re-implement this type of basic functionality.

A similar example in Java would be AppFuse, but that is far more involved than what I'm looking for here.

like image 202
Marc Hughes Avatar asked Feb 26 '09 14:02

Marc Hughes


3 Answers

Anyone looking at this question today in 2010 would do well to look at the Nimble plugin: http://www.grails.org/plugin/nimble

like image 71
kimsal Avatar answered Nov 16 '22 20:11

kimsal


There are a couple I know of,

http://www.grails.org/AcegiSecurity+Plugin

based on the popular Acegi Security (now called Spring Security), possibly a little heavyweight for what you want.

and secondly

http://www.grails.org/Authentication+Plugin

which is a far lighter weight implementation.

Others can be found at http://www.grails.org/Plugins, under 'Security Plugins'

like image 31
Robin Avatar answered Nov 16 '22 18:11

Robin


Here are a few new additions: Spring Security UI and Grum. Both have recent (2012) activity unlike Stark and Nimble which seem to have stopped development (last updates were from 2 years ago).

like image 6
pm_labs Avatar answered Nov 16 '22 19:11

pm_labs