Commit 14221640 authored by Phillip Webb's avatar Phillip Webb

Polish formatting

parent c420249f
...@@ -998,26 +998,28 @@ You can also use regular Spring MVC features like http://docs.spring.io/spring/d ...@@ -998,26 +998,28 @@ You can also use regular Spring MVC features like http://docs.spring.io/spring/d
methods] and http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc-ann-controller-advice[`@ControllerAdvice`]. methods] and http://docs.spring.io/spring/docs/current/spring-framework-reference/htmlsingle/#mvc-ann-controller-advice[`@ControllerAdvice`].
The `ErrorController` will then pick up any unhandled exceptions. The `ErrorController` will then pick up any unhandled exceptions.
N.B. if you register an `ErrorPage` with a path that will end up being handled by a `Filter` (e.g. as is common with some non-Spring web frameworks, N.B. if you register an `ErrorPage` with a path that will end up being handled by a
like Jersey and Wicket), then the `Filter` has to be explicitly registered as an `ERROR` dispatcher, e.g. `Filter` (e.g. as is common with some non-Spring web frameworks, like Jersey and Wicket),
then the `Filter` has to be explicitly registered as an `ERROR` dispatcher, e.g.
[source,java,indent=0,subs="verbatim,quotes,attributes"] [source,java,indent=0,subs="verbatim,quotes,attributes"]
---- ----
@Bean @Bean
public FilterRegistrationBean myFilter() { public FilterRegistrationBean myFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean(); FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setFilter(new MyFilter()); registration.setFilter(new MyFilter());
... ...
registration.setDispatcherTypes(EnumSet.allOf(DispatcherType.class)); registration.setDispatcherTypes(EnumSet.allOf(DispatcherType.class));
return registration; return registration;
} }
---- ----
(the default `FilterRegistrationBean` does not include the `ERROR` dispatcher type). (the default `FilterRegistrationBean` does not include the `ERROR` dispatcher type).
[[boot-features-embedded-container]] [[boot-features-embedded-container]]
=== Embedded servlet container support === Embedded servlet container support
Spring Boot includes support for embedded Tomcat and Jetty servers. Most developers will Spring Boot includes support for embedded Tomcat and Jetty servers. Most developers will
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment