You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: grails-plugin-controllers/src/main/groovy/org/grails/plugins/web/controllers/ControllersGrailsPlugin.groovy
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -91,19 +91,19 @@ class ControllersGrailsPlugin extends Plugin {
91
91
forceEncoding = filtersForceEncoding
92
92
}
93
93
urlPatterns = catchAllMapping
94
-
order =Ordered.HIGHEST_PRECEDENCE+10
94
+
order =FilterRegistrationBean.REQUEST_WRAPPER_FILTER_MAX_ORDER+10
95
95
}
96
96
97
97
hiddenHttpMethodFilter(FilterRegistrationBean) {
98
98
filter = bean(HiddenHttpMethodFilter)
99
99
urlPatterns = catchAllMapping
100
-
order =Ordered.HIGHEST_PRECEDENCE+20
100
+
order =FilterRegistrationBean.REQUEST_WRAPPER_FILTER_MAX_ORDER+20
101
101
}
102
102
103
103
grailsWebRequestFilter(FilterRegistrationBean) {
104
104
filter = bean(GrailsWebRequestFilter)
105
105
urlPatterns = catchAllMapping
106
-
order =Ordered.HIGHEST_PRECEDENCE+30
106
+
order =FilterRegistrationBean.REQUEST_WRAPPER_FILTER_MAX_ORDER+30
0 commit comments