groovy 过滤器的执行顺序是否与 Crafter CMS 中 site.xml 中声明的顺序相同?

Are groovy filters executed the same order as declared in site.xml in Crafter CMS?

groovy 过滤器的执行顺序是否与 Crafter CMS 中 site.xml 中声明的顺序相同? 比如filter1会一直在filter2之前执行吗?

<filter>
            <script>/scripts/filters/filter1.groovy</script>
            <mapping>
                <include>/**</include>
                <exclude></exclude>
            </mapping>
        </filter>
        <filter>
            <script>/scripts/filters/filter2.groovy</script>
            <mapping>
                <include>/**</include>
                <exclude></exclude>
            </mapping>
        </filter>

我正在使用 Crafter 2.5

是的,它们应该按照与 define

相同的顺序执行