gpt4 book ai didi

java - Procrun 与 org.apache.commons.daemon.Daemon

转载 作者:行者123 更新时间:2023-12-03 23:09:18 29 4
gpt4 key购买 nike

我使用 apache commons 示例代码编写了一个守护进程:

public class LockDaemon implements Daemon {

@Override
public void init(DaemonContext context) throws DaemonInitException, Exception {
LogManager.getLogger().info("initialized with arguments {}", context.getArguments());
}

@Override
public void start() throws Exception {
LogManager.getLogger().info("Start called");

}

@Override
public void stop() throws Exception {
LogManager.getLogger().info("Stop called");
}

@Override
public void destroy() {

}

}

不幸的是,这个例子没有提到如何使用 procrun 安装这个类。 Procrun 需要一个静态的“启动方法”,我在使用上面的代码时没有。

那么需要为 procrun 设置哪个启动(和停止)方法才能使上面的代码工作?

最佳答案

这个问题在这个线程中进一步讨论:Howto setup a Daemon implementation as windows service

关于java - Procrun 与 org.apache.commons.daemon.Daemon,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33141254/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com