Browse Source

Upgrade to Jetty 9.4.45.v20220203

Closes gh-29771
pull/29762/head
Stephane Nicoll 4 years ago
parent
commit
a99582a3bb
  1. 2
      spring-boot-project/spring-boot-dependencies/build.gradle
  2. 4
      spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jetty-jsp/src/test/java/smoketest/jetty/jsp/SampleWebJspApplicationTests.java

2
spring-boot-project/spring-boot-dependencies/build.gradle

@ -899,7 +899,7 @@ bom {
] ]
} }
} }
library("Jetty", "9.4.44.v20210927") { library("Jetty", "9.4.45.v20220203") {
prohibit("[11.0.0-alpha0,)") { prohibit("[11.0.0-alpha0,)") {
because "it uses the jakarta.* namespace" because "it uses the jakarta.* namespace"
} }

4
spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-jetty-jsp/src/test/java/smoketest/jetty/jsp/SampleWebJspApplicationTests.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2019 the original author or authors. * Copyright 2012-2022 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.
@ -59,7 +59,7 @@ class SampleWebJspApplicationTests {
JettyServerCustomizer jettyServerCustomizer() { JettyServerCustomizer jettyServerCustomizer() {
return (server) -> { return (server) -> {
ContextHandler handler = (ContextHandler) server.getHandler(); ContextHandler handler = (ContextHandler) server.getHandler();
handler.addAliasCheck(new ContextHandler.ApproveAliases()); handler.addAliasCheck((path, resource) -> true);
}; };
} }

Loading…
Cancel
Save