2

我开始学习 Heroku 网站上的 JAX-RS 教程->

http://arcane-chamber-8582.herokuapp.com/

主要方法如下所示:

package com.example;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.webapp.WebAppContext;

/**
 *
 * This class launches the web application in an embedded Jetty container.
 * This is the entry point to your application. The Java command that is used for
 * launching should fire this main method.
 *
 */
public class Main {

    /**
     * @param args
     */
    public static void main(String[] args) throws Exception{
        String webappDirLocation = "src/main/webapp/";

        // The port that we should run on can be set into an environment variable
        // Look for that variable and default to 8080 if it isn't there.
        String webPort = System.getenv("PORT");
        if (webPort == null || webPort.isEmpty()) {
            webPort = "8080";
        }

        Server server = new Server(Integer.valueOf(webPort));
        WebAppContext root = new WebAppContext();

        root.setContextPath("/");
        root.setDescriptor(webappDirLocation + "/WEB-INF/web.xml");
        root.setResourceBase(webappDirLocation);

        // Parent loader priority is a class loader setting that Jetty accepts.
        // By default Jetty will behave like most web containers in that it will
        // allow your application to replace non-server libraries that are part of the
        // container. Setting parent loader priority to true changes this behavior.
        // Read more here: http://wiki.eclipse.org/Jetty/Reference/Jetty_Classloading
        root.setParentLoaderPriority(true);

        server.setHandler(root);

        server.start();
        server.join();
    }

}

我想知道有人可以向我解释服务器和root 发生了什么吗?如果我为这个进程分配一个测功机,它是否会自动在线程池中创建多个请求线程来处理 RESTful 请求?如果是这样,哪些部分是共享的/不共享的?

谢谢!

4

1 回答 1

2

Jetty 只是在该场景中使用默认值(Jetty 的默认值,而不是 Heroku 的)。您可以像这样更改它:

如何在 Jetty 中使用 setThreadPool()

于 2012-10-27T16:24:19.930 回答