Merge branch '1.3.x'

pull/5234/head
Andy Wilkinson 9 years ago
commit 6bb9eb421f

@ -97,7 +97,7 @@
<jdom2.version>2.0.6</jdom2.version> <jdom2.version>2.0.6</jdom2.version>
<jedis.version>2.7.3</jedis.version> <jedis.version>2.7.3</jedis.version>
<jersey.version>2.22.2</jersey.version> <jersey.version>2.22.2</jersey.version>
<jetty.version>9.2.14.v20151106</jetty.version> <jetty.version>9.2.15.v20160210</jetty.version>
<jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version> <jetty-jsp.version>2.2.0.v201112011158</jetty-jsp.version>
<jmustache.version>1.11</jmustache.version> <jmustache.version>1.11</jmustache.version>
<joda-time.version>2.9.1</joda-time.version> <joda-time.version>2.9.1</joda-time.version>

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2015 the original author or authors. * Copyright 2012-2016 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -664,8 +664,7 @@ public class JettyEmbeddedServletContainerFactory
public HandlerWrapper createGzipHandler(Compression compression) { public HandlerWrapper createGzipHandler(Compression compression) {
GzipHandler gzipHandler = new GzipHandler(); GzipHandler gzipHandler = new GzipHandler();
gzipHandler.setMinGzipSize(compression.getMinResponseSize()); gzipHandler.setMinGzipSize(compression.getMinResponseSize());
gzipHandler.setMimeTypes( gzipHandler.addIncludedMimeTypes(compression.getMimeTypes());
new HashSet<String>(Arrays.asList(compression.getMimeTypes())));
if (compression.getExcludedUserAgents() != null) { if (compression.getExcludedUserAgents() != null) {
gzipHandler.setExcluded(new HashSet<String>( gzipHandler.setExcluded(new HashSet<String>(
Arrays.asList(compression.getExcludedUserAgents()))); Arrays.asList(compression.getExcludedUserAgents())));

Loading…
Cancel
Save