2

我有一个 Spring 应用程序,并使用 Tomcat 开发它并在服务器上运行它。我对部署->取消部署-->再次部署-->.. 开发过程感到非常沮丧,所以我决定切换到嵌入式 Jetty。所以基本上现在我只有一个负责启动服务器的 Java 类:

public class MainServer {

private Server start() throws Exception {
    Server jetty = new Server();
    String[] configFiles = { "WebContent/WEB-INF/jetty.xml" };
    for (String configFile : configFiles) {
        XmlConfiguration configuration = new XmlConfiguration(new File(configFile).toURI().toURL());
        configuration.configure(jetty);
    }

    WebAppContext appContext = new WebAppContext();
    File warPath = new File("WebContent");
    appContext.setWar(warPath.getAbsolutePath());
    appContext.setClassLoader(Thread.currentThread().getContextClassLoader());
    appContext.setContextPath("/4d");
    HandlerList handlers = new HandlerList();
    handlers.setHandlers(new Handler[] { appContext, new DefaultHandler() });
    jetty.setHandler(handlers);

    jetty.start();
    jetty.join();
    return jetty;
}

public static void main(String[] args) {
    try {
        new MainServer().start();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

}

这非常适合开发,因为它允许热交换并且似乎更快。但是,我还想稍后将此设置部署到我的服务器。启动此服务器并在后台运行它(如 Tomcat startup.sh)的最佳方法是什么?我应该如何调用这个 MainServer 类?

4

2 回答 2

2

你提到了startup.sh,所以我想你的服务器是unix之类的。然后考虑使用nohup命令:

nohup java [options] MainServer > nohup.out &
于 2011-07-25T07:48:29.880 回答
1

我建议使用start-stop-daemon编写一个初始化脚本(查找 /etc/init.d/skeleton 作为起点)。遵循标准需要一些时间,但稍后会得到回报。

多年来,我们一直在使用嵌入式 jetty 和 init 脚本。它从未让我们失望过。

于 2011-07-25T07:56:02.477 回答