-
Notifications
You must be signed in to change notification settings - Fork 40.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
128 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...ework/boot/autoconfigure/web/embedded/TomcatVirtualThreadsWebServerFactoryCustomizer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright 2012-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.autoconfigure.web.embedded; | ||
|
||
import org.apache.coyote.ProtocolHandler; | ||
import org.apache.tomcat.util.threads.VirtualThreadExecutor; | ||
|
||
import org.springframework.boot.web.embedded.tomcat.ConfigurableTomcatWebServerFactory; | ||
import org.springframework.boot.web.server.WebServerFactoryCustomizer; | ||
import org.springframework.core.Ordered; | ||
|
||
/** | ||
* Activates {@link VirtualThreadExecutor} on {@link ProtocolHandler Tomcat's protocol | ||
* handler}. | ||
* | ||
* @author Moritz Halbritter | ||
* @since 3.2.0 | ||
*/ | ||
public class TomcatVirtualThreadsWebServerFactoryCustomizer | ||
implements WebServerFactoryCustomizer<ConfigurableTomcatWebServerFactory>, Ordered { | ||
|
||
@Override | ||
public void customize(ConfigurableTomcatWebServerFactory factory) { | ||
factory.addProtocolHandlerCustomizers( | ||
(protocolHandler) -> protocolHandler.setExecutor(new VirtualThreadExecutor("tomcat-handler-"))); | ||
} | ||
|
||
@Override | ||
public int getOrder() { | ||
return TomcatWebServerFactoryCustomizer.order + 1; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
.../boot/autoconfigure/web/embedded/TomcatVirtualThreadsWebServerFactoryCustomizerTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2012-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.boot.autoconfigure.web.embedded; | ||
|
||
import java.util.function.Consumer; | ||
|
||
import org.apache.tomcat.util.threads.VirtualThreadExecutor; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.condition.EnabledForJreRange; | ||
import org.junit.jupiter.api.condition.JRE; | ||
|
||
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory; | ||
import org.springframework.boot.web.embedded.tomcat.TomcatWebServer; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
/** | ||
* Tests for {@link TomcatVirtualThreadsWebServerFactoryCustomizer}. | ||
* | ||
* @author Moritz Halbritter | ||
*/ | ||
class TomcatVirtualThreadsWebServerFactoryCustomizerTests { | ||
|
||
private final TomcatVirtualThreadsWebServerFactoryCustomizer customizer = new TomcatVirtualThreadsWebServerFactoryCustomizer(); | ||
|
||
@Test | ||
@EnabledForJreRange(min = JRE.JAVA_21) | ||
void shouldSetVirtualThreadExecutor() { | ||
withWebServer((webServer) -> assertThat(webServer.getTomcat().getConnector().getProtocolHandler().getExecutor()) | ||
.isInstanceOf(VirtualThreadExecutor.class)); | ||
} | ||
|
||
private TomcatWebServer getWebServer() { | ||
TomcatServletWebServerFactory factory = new TomcatServletWebServerFactory(0); | ||
this.customizer.customize(factory); | ||
return (TomcatWebServer) factory.getWebServer(); | ||
} | ||
|
||
private void withWebServer(Consumer<TomcatWebServer> callback) { | ||
TomcatWebServer webServer = getWebServer(); | ||
webServer.start(); | ||
try { | ||
callback.accept(webServer); | ||
} | ||
finally { | ||
webServer.stop(); | ||
} | ||
} | ||
|
||
} |