Update docs to reflect change to default Filter dispatcher type

Closes gh-10888
See gh-7467
pull/10641/merge
Andy Wilkinson 7 years ago
parent ec7840e049
commit b311237906

@ -595,23 +595,8 @@ addition to the underlying component.
[NOTE] [NOTE]
==== ====
If no `dispatcherType` is specified on a filter registration, it matches If no `dispatcherType` is specified on a filter registration, `REQUEST` is used. This
`FORWARD`,`INCLUDE`, and `REQUEST`. If async has been enabled, it also matches `ASYNC`. aligns with the Servlet Specification's default dispatcher type.
If you are migrating a filter that has no `dispatcher` element in `web.xml`, you
need to specify a `dispatcherType` yourself, as shown in the following example:
[source,java,indent=0,subs="verbatim,quotes,attributes"]
----
@Bean
public FilterRegistrationBean myFilterRegistration() {
FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setDispatcherTypes(DispatcherType.REQUEST);
....
return registration;
}
----
==== ====

Loading…
Cancel
Save