vote up 3 vote down star
1

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.

flag

2 Answers

vote up 5 vote down check

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'

link|flag
I've used Spring Security lots in the past, it's one part that I would likely use to build something like I was requesting. I has assumed the authentication plugin was nearly identical, but after looking at it again, maybe that is what I want. I'll need to investigate. – Marc Hughes Feb 26 at 14:38
vote up 4 vote down

If you're interested in a Spring-security based solution you could look at Stark:

http://www.grails.org/Stark+Security+Plugin

link|flag

Your Answer

Get an OpenID
or

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