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

動作しなかったので、回避策はApacheCommonsDeamonを使用することです。付属の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 に答える