This commit is contained in:
Phillip Webb 2016-04-09 21:41:17 -07:00
parent 5e0ba6ea2e
commit 084b288947

View File

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