-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FELIX-6720 enable virtual thread support in jetty12
- Use org.apache.felix.http.jetty.threadpool.max for virtual threads as well, if configured - Use `VirtualThreadPool` for bounded virtual threads - Document `org.apache.felix.http.jetty.threadpool.max` option - Correct logging for virtual threads - Correct JDK version message to 19 - Add threadpool.max to new IT See https://jetty.org/docs/jetty/12/programming-guide/arch/threads.html#thread-pool-virtual-threads
- Loading branch information
1 parent
b9e7d1f
commit 25bb6d4
Showing
3 changed files
with
81 additions
and
6 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
60 changes: 60 additions & 0 deletions
60
...jetty12/src/test/java/org/apache/felix/http/jetty/it/JettyVirtualThreadsThreadPoolIT.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,60 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 | ||
* | ||
* http://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.apache.felix.http.jetty.it; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
import static org.junit.Assert.assertNotNull; | ||
import static org.ops4j.pax.exam.CoreOptions.mavenBundle; | ||
import static org.ops4j.pax.exam.cm.ConfigurationAdminOptions.newConfiguration; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.util.Hashtable; | ||
import java.util.Map; | ||
|
||
import javax.inject.Inject; | ||
import jakarta.servlet.Servlet; | ||
import jakarta.servlet.http.HttpServlet; | ||
import jakarta.servlet.http.HttpServletRequest; | ||
import jakarta.servlet.http.HttpServletResponse; | ||
|
||
import org.eclipse.jetty.client.ContentResponse; | ||
import org.eclipse.jetty.client.HttpClient; | ||
import org.eclipse.jetty.client.transport.HttpClientTransportOverHTTP; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.ops4j.pax.exam.Option; | ||
import org.ops4j.pax.exam.junit.PaxExam; | ||
import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; | ||
import org.ops4j.pax.exam.spi.reactors.PerClass; | ||
import org.osgi.framework.BundleContext; | ||
import org.osgi.service.http.HttpService; | ||
import org.osgi.service.servlet.whiteboard.HttpWhiteboardConstants; | ||
|
||
@RunWith(PaxExam.class) | ||
@ExamReactorStrategy(PerClass.class) | ||
public class JettyVirtualThreadsThreadPoolIT extends JettyVirtualThreadsIT { | ||
@Override | ||
protected Option felixHttpConfig(int httpPort) { | ||
return newConfiguration("org.apache.felix.http") | ||
.put("org.osgi.service.http.port", httpPort) | ||
.put("org.apache.felix.http.jetty.threadpool.max", 100) | ||
.put("org.apache.felix.http.jetty.virtualthreads.enable", Boolean.TRUE.toString()) | ||
.asOption(); | ||
} | ||
} |