簡體   English   中英

如何以編程方式啟動具有多個配置文件的碼頭服務器?

[英]How can I programmatically start a jetty server with multiple configuration files?

換句話說,這等效於:

java -jar start.jar等/jetty.xml jetty-plus.xml

我正在使用Jetty 6。

Jetty 7,Jetty 8和Jetty 9可以做到這一點。可以升級嗎?

注意:Jetty 6已於2010年停產。

package jetty;

import java.io.File;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.xml.XmlConfiguration;

public class EmbeddedViaXml
{
    public static void main(String[] args)
    {
        try
        {
            // The configuration files
            List<URL> configs = new ArrayList<>();
            configs.add(new File("jetty.xml").toURI().toURL());
            configs.add(new File("jetty-plus.xml").toURI().toURL());

            // The properties
            Map<String, String> props = new HashMap<String, String>();
            props.put("jetty.home",new File(System.getProperty("user.dir")).getCanonicalPath());

            Server server = load(configs,props);
            server.start();
            server.join();
        }
        catch (Throwable t)
        {
            t.printStackTrace();
        }
    }

    public static Server load(List<URL> xmlConfigUrls, Map<String, String> props) throws Exception
    {
        XmlConfiguration last = null;
        // Hold list of configured objects
        Object[] obj = new Object[xmlConfigUrls.size()];

        // Configure everything
        for (int i = 0; i < xmlConfigUrls.size(); i++)
        {
            URL configURL = xmlConfigUrls.get(i);
            XmlConfiguration configuration = new XmlConfiguration(configURL);
            if (last != null)
            {
                // Let configuration know about prior configured objects
                configuration.getIdMap().putAll(last.getIdMap());
            }
            configuration.getProperties().putAll(props);
            obj[i] = configuration.configure();
            last = configuration;
        }

        // Find Server Instance.
        Server foundServer = null;
        int serverCount = 0;
        for (int i = 0; i < xmlConfigUrls.size(); i++)
        {
            if (obj[i] instanceof Server)
            {
                if (obj[i].equals(foundServer))
                {
                    // Identical server instance found
                    continue; // Skip
                }
                foundServer = (Server)obj[i];
                serverCount++;
            }
        }

        if (serverCount <= 0)
        {
            throw new IllegalStateException("Load failed to configure a " + Server.class.getName());
        }

        if (serverCount == 1)
        {
            return foundServer;
        }

        throw new IllegalStateException(String.format("Configured %d Servers, expected 1",serverCount));
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM