Commit 9f55deeb authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '1.5.x'

parents e4f80e68 a2e74994
......@@ -16,6 +16,8 @@
package org.springframework.boot.autoconfigure.jersey;
import java.nio.charset.Charset;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
......@@ -103,7 +105,7 @@ public class JerseyAutoConfigurationServletContainerTests {
jerseyServlet.setServlet(new ServletContainer());
jerseyServlet.setOverridable(false);
context.addChild(jerseyServlet);
String pattern = UDecoder.URLDecode("/*", "UTF-8");
String pattern = UDecoder.URLDecode("/*", Charset.forName("UTF-8"));
context.addServletMappingDecoded(pattern, servletName);
}
......
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