pull/5663/merge
Phillip Webb 9 years ago
parent 5e0ba6ea2e
commit 084b288947

@ -407,11 +407,13 @@ public class JettyEmbeddedServletContainerFactory
*/ */
private Configuration getErrorPageConfiguration() { private Configuration getErrorPageConfiguration() {
return new AbstractConfiguration() { return new AbstractConfiguration() {
@Override @Override
public void configure(WebAppContext context) throws Exception { public void configure(WebAppContext context) throws Exception {
ErrorHandler errorHandler = context.getErrorHandler(); ErrorHandler errorHandler = context.getErrorHandler();
addJettyErrorPages(errorHandler, getErrorPages()); addJettyErrorPages(errorHandler, getErrorPages());
} }
}; };
} }
@ -421,6 +423,7 @@ public class JettyEmbeddedServletContainerFactory
*/ */
private Configuration getMimeTypeConfiguration() { private Configuration getMimeTypeConfiguration() {
return new AbstractConfiguration() { return new AbstractConfiguration() {
@Override @Override
public void configure(WebAppContext context) throws Exception { public void configure(WebAppContext context) throws Exception {
MimeTypes mimeTypes = context.getMimeTypes(); MimeTypes mimeTypes = context.getMimeTypes();
@ -429,6 +432,7 @@ public class JettyEmbeddedServletContainerFactory
mapping.getMimeType()); mapping.getMimeType());
} }
} }
}; };
} }

Loading…
Cancel
Save