Thanks to Joshua Moore for answering my question.
The problem is that:
because in recent versions of Grails (2.3+) assets are served up by the asset pipeline plugin from the /assets/**
URL.
So the filter should be
securityFilters(controller:'*', action:'*', uriExclude: '/assets/**'){}
instead of just
securityFilters(controller:'*', action:'*'){}
No comments:
Post a Comment