everytime i call subject.isPermitted(), it send a sql to db. how can i cache it?

any example? thanks


i had read the doc of shiro grails plugin. but cant solove it.

DataSource:

hibernate {
    cache.use_second_level_cache = true
    cache.use_query_cache = true
    cache.provider_class = 'net.sf.ehcache.hibernate.EhCacheProvider'
}

then how to set the cachemanager to shiro? i try spring.resource,throw an error.

and what's the instance bean name of cachemanager? do i need to config sth else?

link|improve this question

77% accept rate
feedback

1 Answer

You'll need to configure an org.apache.shiro.cache.CacheManager instance on Shiro's SecurityManager. Most of Shiro's out-of-the-box Realm implementations know how to work with a configured CacheManager and will cache AuthorizationInfo returned from a Realm permission lookup automatically.

I'm not sure how to do this using the Grails Shiro plugin, but in Shiro's INI, you would do that this way:

[main]
...
cacheManager = com.my.implementation.of.CacheManager
securityManager.cacheManager = $cacheManager
...

I'd recommend asking the grails-user mailing list to see if there is a more 'grailsy' way to configure this for the Grails Shiro plugin.

HTH,

Les

link|improve this answer
thanks for reply. – atian25 Dec 14 '10 at 2:20
feedback

Your Answer

 
or
required, but never shown

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