如何在 Jetty 中使用 setThreadPool()
我想了解如何使用 setThreadPool()
功能。假设我的主类如下:
import javax.servlet.SingleThreadModel;
import org.eclipse.jetty.server.Server;
public class FServer implements SingleThreadModel {
public static void main(String[] args) throws Exception {
Server server = new Server(x);
server.setHandler(new Handler());
server.start();
server.join();
}
}
当尝试添加 setThreadPool()
时,总是要求我实现抽象方法。
我的问题是,如何在不强制使用 XML 配置文件的情况下设置 Jetty 的 ThreadPool 长度,即类似 server.setThreadPool(5)
的文件,其中 5 是同时线程的数量?
I wanted to see how to use the setThreadPool()
functionality. Let's say my main class is the following:
import javax.servlet.SingleThreadModel;
import org.eclipse.jetty.server.Server;
public class FServer implements SingleThreadModel {
public static void main(String[] args) throws Exception {
Server server = new Server(x);
server.setHandler(new Handler());
server.start();
server.join();
}
}
When trying to add the setThreadPool()
, I'm always asked to implement abstract methods.
My question is, how can I set the ThreadPool length for Jetty without being forced to use an XML configuration file, i.e. something like server.setThreadPool(5)
where 5 is the number of simultaneous threads?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个例子:
Here is an example:
您还可以使用以下内容:
You can also use the following: