开发者

Grails filters: Any way of chaining filters?

开发者 https://www.devze.com 2023-01-14 16:42 出处:网络
Is there a way to chain several filters in a grails application (as in Java filters)? Maybe something with spring?

Is there a way to chain several filters in a grails application (as in Java filters)? Maybe something with spring?

I've written a couple of filters, and would like to get them to execute serially (order is not particularly important). The reason behin开发者_如何学编程d this? I need to write about 20, 30 filters, and don't want them all in the same file.

I've read about Spring's DelegatingFilterProxy but can't figure out on how to configure it to chain all my grails filters.


Since Grails 1.3.1 you can chain filters by using the "dependsOn" keyword:

def dependsOn = [MyOtherFilters.class]

http://jira.codehaus.org/browse/GRAILS-6229


I may not be understanding the core issue here, but the simple answer might be "they're already chained". Filters are executed based on the selector you put in the filter closure (e.g. myPreProcessorFilter(controller:'', action:'') {}). All selectors that match your controller/action will execute. I do this all the time with logging and performance measurement filters.

Here's an example. Both the logAction and measureMethodTime filters will be applied to all controllers and actions (since I left the selector wide open).

    import org.springframework.web.context.request.RequestContextHolder as RCH
import com.x.y.*

class PerformanceFilters {
    def filters = {

        logAction(controller:'*', action:'*'){
            before = {
                log.debug("${controllerName}.${actionName}: entering; params=${params}")
            }
        }

        measureMethodTime(controller:'*', action:'*'){
            before = {
                def session = RCH.currentRequestAttributes().getSession(false)
                if (session)
                {
                    Q.startTimer("${session.id}-${controllerName}-${actionName}", "method.${controllerName}.${actionName}")
                }
            }

            afterView = {
                def session = RCH.currentRequestAttributes().getSession(false)
                if (session)
                {
                    Q.stopTimer("${session.id}-${controllerName}-${actionName}", "method.${controllerName}.${actionName}")
                }
            }
        }

    }
}


http://grails.org/doc/latest/guide/single.html#6.6.4%20Filter%20Dependencies

0

精彩评论

暂无评论...
验证码 换一张
取 消