Reputation: 4829
I have been working with grails application and for security purpose used the spring security core.
Now with that they are also providing the UI stuffs of security. So I have installed the plugin from http://grails.org/plugin/spring-security-ui in the project where I have configured spring security core too.
Now I have not found any videocast or any sample links where I can find that how can it be configured with my existing project.
So want some sample application or links so that I can get the spring security ui working in my project.
Thanks in advance...
Upvotes: 0
Views: 4117
Reputation: 1145
Aside from official docs which Aaron already posted, I also found this tutorial: Customizing The Grails Spring Security UI Plugin useful.
Upvotes: 0
Reputation: 33345
did you try the online documentation? It is very thorough
https://github.com/grails-plugins/grails-spring-security-ui/tree/master/src/docs/guide
Upvotes: 4
Reputation: 699
Burt's docs are indeed excellent (code too, BTW, if anyone's counting). But it's not actually all that obvious how to integrate the Grails Spring Security UI plugin. Try this recipe (tested with Grails 1.3.5):
git clone http://github.com/grails-plugins/grails-spring-security-acl.git
instead. That gives you a list of the links to the controllers you need. Trust me: you want to do this.grails upgrade
and say yes to everythinggrails run-app
grails install-plugin spring-security-core
grails install-plugin spring-security-acl
grails install-plugin spring-security-ui
grails run-app
Please let me know how you make out.
Upvotes: 4