0

我正在尝试使用 WinRun4J 将 Java 应用程序作为 Windows 服务运行。

我将 WinRun4J64c.exe 复制到我的应用程序目录中,并将以下 service.ini 文件放在旁边:

service.class=org.boris.winrun4j.MainService
service.id=MyAPP
service.name=MyAPP
service.description=some description

classpath.1=./lib/*
classpath.2=WinRun4J.jar

[MainService]
class=play.core.server.NettyServer

但是,如果我以以下方式启动服务:WinRun4J64c.exe --WinRun4J:RegisterService我得到:

Service control dispatcher error: 1063

怎么了?

4

1 回答 1

2

我没有让它工作,所以我的解决方法是使用Apache Commons Deamon。我使用以下参数执行了包含的 prunsrv.exe:

prunsrv.exe install "MeineAnwendung" \
--Install="C:/pfad/zu/prunsrv.exe" \
--JvmOptions=-Dpidfile.path=NUL
--Jvm=auto \
--Startup=auto \
--StartMode=jvm \
--Classpath="c:/irgendwo/anwendung/lib/*;" \
--StartClass=play.core.server.NettyServer
于 2013-02-13T10:44:59.187 回答