@ -76,7 +77,8 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
@@ -76,7 +77,8 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
@ -88,7 +90,7 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
@@ -88,7 +90,7 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
"createServletApplicationContext() did not return an application "+
@ -129,6 +131,13 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
@@ -129,6 +131,13 @@ public abstract class AbstractDispatcherServletInitializer extends AbstractConte
@ -205,7 +205,7 @@ based equivalent of the above `web.xml` example:
@@ -205,7 +205,7 @@ based equivalent of the above `web.xml` example:
`WebApplicationInitializer` is an interface provided by Spring MVC that ensures your
code-based configuration is detected and automatically used to initialize any Servlet 3
container. An abstract base class implementation of this interace named
container. An abstract base class implementation of this interface named
`AbstractDispatcherServletInitializer` makes it even easier to register the
`DispatcherServlet` by simply specifying its servlet mapping.
See <<mvc-container-config,Code-based Servlet container initialization>> for more details.
@ -4462,6 +4462,9 @@ The `isAsyncSupported` protected method of `AbstractDispatcherServletInitializer
@@ -4462,6 +4462,9 @@ The `isAsyncSupported` protected method of `AbstractDispatcherServletInitializer
provides a single place to enable async support on the `DispatcherServlet` and all
filters mapped to it. By default this flag is set to `true`.
Finally, if you need to further customize the `DispatcherServlet` itself, you can