Tagged Questions

1
vote
1answer
604 views

Using Shiro to secure services in grails

I'm using grails to build an application that functions primarily as a service framework. My question is: Can services be secured in the same fashion as controllers? uri-based example: class ...
0
votes
1answer
1k views

Secure some, but not all pages in a Grails application with the Shiro plugin

Might be just me, but I have a hard time understanding how to secure just some of the pages in a Grails application with the Shiro Plugin. I use this in my security filter: class SecurityFilters { ...
0
votes
1answer
776 views

Using groovy metaClass to mock out Shiro SecurityUtils in bootstrap

For further background, see http://grails.markmail.org/message/62w2xpbgneapmhpd I'm trying to mock out the Shiro SecurityUtils.getSubject() method in my BootStrap.groovy. I decided on this approach ...